UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

27 lines (26 loc) 545 B
import { Type } from "igniteui-webcomponents-core"; /** * Indicates the built in easing type to use for an animation. */ export declare enum GridEasingFunctionType { /** * Use linear easing. */ Linear = 0, /** * Use cubic in/out easing. */ CubicInOut = 1, /** * Use exponential in/out easing. */ ExponentialInOut = 2, /** * Use circle in/out easing. */ CircleInOut = 3 } /** * @hidden */ export declare let GridEasingFunctionType_$type: Type;