think/packages/domains/src/models/pagination.ts

5 lines
67 B
TypeScript

export type IPagination = {
page: number;
pageSize: number;
};