UNPKG

@innovaccer/design-system

Version:

React components library project for Innovaccer Design System

12 lines (11 loc) 429 B
export declare const COMMON_MIME_TYPES: Map<string, string>; interface DOMFile extends Blob { readonly lastModified: number; readonly name: string; } export interface FileWithPath extends DOMFile { readonly path?: string; } export declare function fromEvent(evt: Event): Promise<(FileWithPath | DataTransferItem)[]>; export declare function toFileWithPath(file: FileWithPath, path?: string): FileWithPath; export {};