UNPKG
eust-conciliation
Version:
latest (1.0.0)
1.0.0
github.com/ADD01-TECH/api-01eust
ADD01-TECH/api-01eust
eust-conciliation
/
src
/
domain
/
pagination.ts
7 lines
(6 loc)
•
99 B
text/typescript
View Raw
1
2
3
4
5
6
7
export interface IPagination<T> { count: number; limit: number;
offset
: number; data: T; }