@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
16 lines (15 loc) • 449 B
TypeScript
import { CustomSort } from '../CustomSortState';
import { ColumnSort } from './ColumnSort';
/**
* Overview of current sorting state in the grid
*/
export interface AdaptableSortState {
/**
* Which columns have sorting applied and,if so, which direction
*/
columnSorts: ColumnSort[];
/**
* All Custom Sorts in State (note: this is always sent, even if no custom sorts are active)
*/
customSorts: CustomSort[];
}