Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// @flow
/**
* Type definitions for Image EventHandling
*/
export type Image = {|
/**
* Handle Image Loading Event
*/
+onLoad?: (event: SyntheticEvent<*>) => mixed,
/**
* Handle Image Error Event
*/
+onError?: (event: SyntheticEvent<*>) => mixed,
|};