pagination.ts 218 B

12345678
  1. export interface PaginationResult<R> extends Array<R> {
  2. next(): Promise<PaginationResult<R>>;
  3. // The total number of results available or null if unknown
  4. totalResults: null | number;
  5. done: boolean;
  6. }