UNPKG
@etherspot/data-utils
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
Etherspot Data Utils
etherspot.dev
etherspot/etherspot-data-utils
@etherspot/data-utils
/
dist
/
cjs
/
sdk
/
common
/
classes
/
pagination-result.d.ts
8 lines
(6 loc)
•
156 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
declare
abstract
class
PaginationResult
<T =
any
> {
abstract
items
?: T[];
currentPage
:
number
;
nextPage
:
number
; }
export
{
PaginationResult
};