UNPKG

@sparser/au2-data-grid

Version:
17 lines (14 loc) 281 B
export enum SortDirection { Ascending = 'Ascending', Descending = 'Descending', } export interface SortOption<T> { /** * Name of the property on which to sort */ property: keyof T; /** * Direction of sorting */ direction: SortDirection; }