UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

23 lines (22 loc) 424 B
import { Type } from "igniteui-react-core"; /** * Indicates the direction a column should be sorted in. */ export declare enum ColumnSortDirection { /** * Not sort applied. */ None = 0, /** * Sort is ascending. */ Ascending = 1, /** * Sort is descending. */ Descending = 2 } /** * @hidden */ export declare let ColumnSortDirection_$type: Type;