mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-17 15:08:19 +00:00
6 lines
149 B
TypeScript
6 lines
149 B
TypeScript
export type Pagination = { total: number; pageSize: number; page: number };
|
|
|
|
export type PaginatedResponse<T> = T & {
|
|
pagination: Pagination;
|
|
};
|