Interface WithCategoriesPostsOptions<F>

Base interface for options that contain feed configuration.

interface WithCategoriesPostsOptions<F> {
    categories: string[];
    every?: boolean;
    feed: F;
}

Type Parameters

Hierarchy (view full)

Properties

categories: string[]

The categories of the posts to be retrieved.

every?: boolean

If true, the retrieved posts will have all the categories.

feed: F

The blog's feed options.