igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
23 lines (22 loc) • 432 B
TypeScript
import { Type } from "igniteui-webcomponents-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;