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