UNPKG
@leapfrogtechnology/db-model
Version:
latest (1.0.0-beta.3)
1.0.0-beta.3
1.0.0-beta.2
1.0.0-beta.1
Low-footprint database abstraction layer and model built on top of Knex.
leapfrogtechnology/js-util
@leapfrogtechnology/db-model
/
dist
/
domain
/
PaginationResult.d.ts
10 lines
(9 loc)
•
192 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * Output interface for final response of pagination. */
interface
PaginationResult
<T> {
totalCount
:
number
;
maxRows
:
number
;
records
: T[]; }
export
default
PaginationResult
;