Pagination.ts 123 B

1234567
  1. interface Pagination {
  2. startCursor?: string;
  3. endCursor?: string;
  4. hasNextPage: boolean;
  5. }
  6. export default Pagination;