UNPKG

@freedomds/shared-pagination

Version:

FDS-Shared - Helper types for grid pagination, sorting and filtering

7 lines (6 loc) 205 B
import { SortOrder } from './enumeration/sort-order'; export declare class SortingInstruction { column: string; direction: SortOrder; constructor(column: string, direction: SortOrder); }