UNPKG
vibe-sharedui
Version:
latest (1.1.1)
1.1.1
1.0.9
1.0.8
1.0.7
1.0.6
1.0.4
1.0.2
1.0.1
EuroMonitor EMI vibe models
www.euromonitor.com/india
vibe-sharedui
/
lib
/
containers
/
entity
/
pagination.d.ts
14 lines
(13 loc)
•
258 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** * Generic pagination interface */
export
interface
IPagination
<
T
> {
/** * Items included in the current listing */
readonly
items: T[];
/** * Total number of available items */
readonly
total: number; }