Interface for retrieving blog comments.

Provides methods for paginated access and individual entry retrieval.

interface Comments {
    byId<R>(options: ByIdCommentsOptions<R>): Promise<CommentsHandler<R>>;
    byId(options: ByIdCommentsOptionsSummary): Promise<CommentsHandler<"summary">>;
    <R>(options: CommentsOptions<R>): Promise<CommentsHandler<R>>;
    (options: CommentsOptionsSummary): Promise<CommentsHandler<"summary">>;
}

Methods

Methods