@freedomds/shared-pagination
Version:
FDS-Shared - Helper types for grid pagination, sorting and filtering
9 lines (8 loc) • 334 B
TypeScript
import { SortingInstruction } from './sorting-instruction';
export declare class PagingInstruction {
pageIndex: number;
pageSize: number;
totalRowCount: number;
sortOptions: SortingInstruction[];
constructor(pageIndex: number, pageSize: number, totalRowCount: number, sortOptions: SortingInstruction[]);
}