UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

14 lines (13 loc) 245 B
/** * Defines how a Column is sorted */ export interface ColumnSort { /** * Id of Column being sorted */ ColumnId: string; /** * How Column is sorted - either 'Asc' or 'Desc' */ SortOrder: 'Asc' | 'Desc'; }