@maschinenlesbar.org/fim-portal-cli
    Preparing search index...

    Interface CursorPaginationResult<T>

    Cursor paginated envelope used by the v0 XZuFi entity listings.

    interface CursorPaginationResult<T> {
        count: number;
        items: T[];
        limit: number;
        next_cursor: number | null;
    }

    Type Parameters

    • T
    Index
    count: number
    items: T[]
    limit: number
    next_cursor: number | null