Type Alias PaginatedData<Data>

PaginatedData: {
    count: number;
    next: string | null;
    previous: string | null;
    results: Data[];
}

Type Parameters

  • Data

Type declaration

  • count: number
  • next: string | null
  • previous: string | null
  • results: Data[]