igniteui-react-grids
Version:
Ignite UI React grid components.
23 lines (22 loc) • 521 B
TypeScript
import { Type } from "igniteui-react-core";
/**
* Enumerates the options for how columns animate while moving.
*/
export declare enum ColumnMovingAnimationMode {
/**
* Automatically decides on the animation mode to use.
*/
Auto = 0,
/**
* No animation is performed.
*/
None = 1,
/**
* The cells slide on top of the others to its desired position.
*/
SlideOver = 2
}
/**
* @hidden
*/
export declare let ColumnMovingAnimationMode_$type: Type;