AniLink - v2.0.0
    Preparing search index...

    Interface LookAheadResult<TEntry>

    The ordered outcome of a fetchWithLookAhead traversal.

    interface LookAheadResult<TEntry> {
        count: number;
        responses: TEntry[];
        truncated: boolean;
    }

    Type Parameters

    • TEntry

      Raw response shape for one fetched page or chunk.

    Index
    count: number

    Number of entries actually fetched.

    responses: TEntry[]

    Responses ordered by entry number.

    truncated: boolean

    Whether the traversal stopped at maxEntries before the source ran out.