igniteui-react-grids
Version:
Ignite UI React grid components.
23 lines (22 loc) • 535 B
TypeScript
import { Type } from "igniteui-react-core";
/**
* Enumerates the options for how data loaded animations are displayed.
*/
export declare enum CellDataLoadedAnimationMode {
/**
* The correct animation mode is automatically selected.
*/
Auto = 0,
/**
* No animation is performed.
*/
None = 1,
/**
* The previous value and the next value are crossfaded between.
*/
CrossFade = 2
}
/**
* @hidden
*/
export declare let CellDataLoadedAnimationMode_$type: Type;