shaligo
    Preparing search index...

    Interface Paginated<T>

    interface Paginated<T> {
        count: number;
        next: string | null;
        previous: string | null;
        results: T[];
    }

    Type Parameters

    • T
    Index
    count: number

    Total number of matching records across all pages.

    next: string | null

    URL of the next page, or null on the last page.

    previous: string | null

    URL of the previous page, or null on the first page.

    results: T[]