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 cell selection is animated.
*/
export declare enum CellSelectionAnimationMode {
/**
* The correct animation mode is automatically selected.
*/
Auto = 0,
/**
* No animation is performed.
*/
None = 1,
/**
* The selection color and the normal background color are blended between.
*/
ColorBlend = 2
}
/**
* @hidden
*/
export declare let CellSelectionAnimationMode_$type: Type;