@shortcut/client
    Preparing search index...

    Interface EpicPaginatedResults

    Results schema for paginated Epic listing.

    interface EpicPaginatedResults {
        data: EpicSlim[];
        next?: null | number;
        total: number;
    }
    Index

    Properties

    Properties

    data: EpicSlim[]

    Array of Epic objects on the current page

    next?: null | number

    The next page number if there are more results, or null for the last page

    int64

    total: number

    The total number of Epics matching the query over all pages

    int64