Interface BaseFeedOptions<T, R>

interface BaseFeedOptions<T, R> {
    blogUrl?: string;
    route: R;
    type: T;
    params?: Partial<RequestFeedParams>;
}

Type Parameters

Properties

blogUrl?: string

The blog's URL.

route: R

The route of the blog's feed.

The possible values are 'full' or 'summary'.

type: T

The type of the blog's feed.

The possible values are "posts" or "comments" or "pages".

params?: Partial<RequestFeedParams>

The parameters for the feed request.