UNPKG
nestjs-starter
Version:
latest (0.1.5)
0.1.5
0.1.4
0.1.3
0.1.2
Get started for beginners with Nestjs
github.com/pktai/nestjs-starter
pktai/nestjs-starter
nestjs-starter
/
src
/
shared
/
paginate
/
pagination.ts
11 lines
(10 loc)
•
306 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
class
Pagination
<
PaginationObject
> {
constructor
(
public
readonly
items
:
PaginationObject
[],
public
readonly
itemCount
:
number
,
public
readonly
totalItems
:
number
,
public
readonly
pageCount
:
number
,
public
readonly
next
?:
string
,
public
readonly
previous
?:
string
) {} }