@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
12 lines (11 loc) • 332 B
TypeScript
import { AdaptableSortState } from '../../AdaptableState/Common/AdaptableSortState';
import { BaseContext } from '../../types';
/**
* EventInfo returned by GridSorted event
*/
export interface GridSortedInfo extends BaseContext {
/**
* Current sort state in the Grid
*/
adaptableSortState: AdaptableSortState;
}