Type alias PaginatedList<PageItem, PageExtra>

PaginatedList<PageItem, PageExtra>: {
    next: string | null;
    perPage: number;
    previous: string | null;
    results: PageItem[];
    total: number;
} & PageExtra

Type Parameters

  • PageItem

  • PageExtra = Record<string, never>

Type declaration

  • next: string | null
  • perPage: number
  • previous: string | null
  • results: PageItem[]
  • total: number

Generated using TypeDoc