UNPKG

@cbnsndwch/ghl-app-contracts

Version:
19 lines (18 loc) 344 B
export interface IPaginatedList<T> { /** * The items in the current page */ items: T[]; /** * The total number of items in the list */ count: number; /** * The number of items per page */ limit: number; /** * The zero-based offset of the current page */ offset: number; }