aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/types/Pagination.ts
blob: ccff04b210fe5de141b24f8126cf11f41bdb408d (plain) (blame)
1
2
3
4
5
6
export interface Pagination {
  total_records: number;
  total_pages: number;
  current_page: number;
  page_size: number;
};