UNPKG

vibe-sharedui

Version:

EuroMonitor EMI vibe models

14 lines (13 loc) 258 B
/** * Generic pagination interface */ export interface IPagination<T> { /** * Items included in the current listing */ readonly items: T[]; /** * Total number of available items */ readonly total: number; }