UNPKG

327 BTypeScriptView Raw
1export declare const COMMON_MIME_TYPES: Map<string, string>;
2export declare function toFileWithPath(file: FileWithPath, path?: string, h?: FileSystemHandle): FileWithPath;
3export interface FileWithPath extends File {
4 readonly path?: string;
5 readonly handle?: FileSystemFileHandle;
6 readonly relativePath?: string;
7}