diff options
Diffstat (limited to 'frontend/src/types/Pagination.ts')
| -rw-r--r-- | frontend/src/types/Pagination.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/frontend/src/types/Pagination.ts b/frontend/src/types/Pagination.ts new file mode 100644 index 0000000..ccff04b --- /dev/null +++ b/frontend/src/types/Pagination.ts | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | export interface Pagination { | ||
| 2 | total_records: number; | ||
| 3 | total_pages: number; | ||
| 4 | current_page: number; | ||
| 5 | page_size: number; | ||
| 6 | }; | ||