paging-result.ts 89 B

12345
  1. export type IPagingResult<T> = {
  2. items: T[];
  3. totalCount: number;
  4. limit: number;
  5. };