slickgrid
Version:
A lightning fast JavaScript grid/spreadsheet
13 lines • 368 B
TypeScript
export interface PagingInfo {
/** Page size number */
pageSize: number;
/** Current page number */
pageNum: number;
/** Total count of rows in dataset */
totalRows: number;
/** Total pages count that pagination has */
totalPages: number;
/** DataView object */
dataView: any;
}
//# sourceMappingURL=pagingInfo.interface.d.ts.map