UNPKG

@progress/kendo-react-animation

Version:

React Animation component assists with animating HTML elements. KendoReact Animation package

13 lines (12 loc) 324 B
import * as React from 'react'; /** @hidden */ export declare type AnimationConfig = { initial?: React.CSSProperties; duration?: number; appear?: boolean; onStart?: any; onUpdate?: any; onEnd?: any; }; /** @hidden */ export declare const useAnimation: (config: AnimationConfig, deps: any[]) => void;