igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
23 lines (22 loc) • 523 B
TypeScript
import { Type } from "igniteui-webcomponents-core";
/**
* Enumerates the options for how columns animate while resizing.
*/
export declare enum ColumnResizingAnimationMode {
/**
* Automatically decides on the animation mode to use.
*/
Auto = 0,
/**
* No animation is performed.
*/
None = 1,
/**
* The column width interpolates to the new width.
*/
Interpolate = 2
}
/**
* @hidden
*/
export declare let ColumnResizingAnimationMode_$type: Type;