UNPKG

@mikezimm/fps-core-v7

Version:

Library of reusable core interfaces, types and constants migrated from fps-library-v2

14 lines 565 B
/** * 2024-11-04: Copied from PhotoFormWebpart * Sample functions generated by ChatGPT for handling various types of file. * 2024-11-03: Currently not used or tested. * */ export interface IClipboardHandlerOptions { onImageData?: (data: string) => void; onExcelData?: (data: ArrayBuffer) => void; onTextData?: (data: string) => void; onPowerPointData?: (data: ArrayBuffer) => void; } export declare const handlePaste: (e: ClipboardEvent, options: IClipboardHandlerOptions) => void; //# sourceMappingURL=handlePasteFiles.d.ts.map