@c8y/ngx-components
Version:
Angular modules for Cumulocity IoT applications
12 lines • 366 B
TypeScript
/** Pagination statistics. */
export type PageStatistics = {
/** The current page number. */
currentPage?: number;
/** The number of items per page. */
pageSize?: number;
/** The total number of pages. */
totalPages?: number;
/** The total number of elements. */
totalElements?: number;
};
//# sourceMappingURL=pageStatistics.d.ts.map