Interface FeedByIdOptions<T, R>

The options for configuring a blog feed request by ID.

interface FeedByIdOptions<T, R> {
    feed: FeedOptions<T, R>;
    id: string;
}

Type Parameters

Hierarchy (view full)

Properties

Properties

feed: FeedOptions<T, R>

The blog's feed options.

id: string

The entry id.