IGPAPI
    Preparing search index...

    Interface PaginatedFeed<TInput, TResponse, TItem>

    interface PaginatedFeed<TInput, TResponse, TItem> {
        "[asyncIterator]"(): AsyncIterableIterator<FeedPage<TResponse, TItem>>;
        checkpoint(): TInput;
        next(): Promise<FeedPage<TResponse, TItem>>;
    }

    Type Parameters

    • TInput
    • TResponse
    • TItem
    Index

    Methods