UNPKG

slickgrid

Version:

A lightning fast JavaScript grid/spreadsheet

18 lines (12 loc) 303 B
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; }