igniteui-react-core
Version:
Ignite UI React Core.
14 lines (13 loc) • 311 B
TypeScript
import { Type } from "./type";
/**
* @hidden
*/
export interface ISupportsAnimation {
isAnimationActive(): boolean;
getAnimationIdleVersionNumber(): number;
queueForAnimationIdle(a: () => void, b: number): void;
}
/**
* @hidden
*/
export declare let ISupportsAnimation_$type: Type;