Interface Pages

Interface for retrieving blog pages.

Provides methods for paginated access and individual entry retrieval.

interface Pages {
    byId<R>(options: ByIdPagesOptions<R>): Promise<ByIdResult<"pages", R>>;
    byId(options: ByIdPagesOptionsSummary): Promise<PagesEntryBlogSummary>;
    <R>(options: PagesOptions<R>): Promise<PagesHandler<R>>;
    (options: PagesOptionsSummary): Promise<PagesHandler<"summary">>;
}

Methods

Methods