infinity-fetch - v1.4.0
    Preparing search index...

    Type Alias InfinityFetchResult<TItem>

    type InfinityFetchResult<TItem> = {
        items: TItem[];
        pages: number;
        aborted?: true;
    }

    Type Parameters

    • TItem
    Index

    Properties

    Properties

    items: TItem[]

    All items collected across every page

    pages: number

    Number of pages fetched

    aborted?: true

    Present and true when the fetch was stopped early via AbortSignal