Interface Paginated<ResultArray>

interface Paginated<ResultArray> {
    count: number;
    results: ResultArray;
    total: number;
}

Type Parameters

  • ResultArray

Properties

Properties

count: number

Number of results in this page

results: ResultArray

Result items for this page

total: number

Total number of results matching the query