export interface ColumnSort { /** * Column sorting direction */ direction: string; /** * Column Field Name */ fieldName: string; /** * Index of the column in the grid */ columnIndex: number; } export default ColumnSort;