@cbnsndwch/ghl-app-contracts
Version:
Data contracts for GHL Marketplace apps
19 lines (18 loc) • 344 B
TypeScript
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;
}