Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// @flow
/**
* Type definitions for Clipboard EventHandling
*/
export type Clipboard = {|
/**
* Handle Copy Event
*/
+onCopy?: (event: SyntheticClipboardEvent<*>) => mixed,
/**
* Handle Cut Event
*/
+onCut?: (event: SyntheticClipboardEvent<*>) => mixed,
/**
* Handle Paste Event
*/
+onPaste?: (event: SyntheticClipboardEvent<*>) => mixed,
|};