Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// @flow
/**
* Type definitions for Animation EventHandling
*/
export type Animation = {|
/**
* Handle Animation Start
*/
+onAnimationStart?: (event: SyntheticAnimationEvent<*>) => mixed,
/**
* Handle Animation End
*/
+onAnimationEnd?: (event: SyntheticAnimationEvent<*>) => mixed,
/**
* Handle Animation Interation
*/
+onAnimationIteration?: (event: SyntheticAnimationEvent<*>) => mixed,
|};