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