//#region src/file.d.ts /** * Read an expected JSON type File. * * Probably paired with: * */ declare function readJSONFile(file: File): Promise; declare const MimeTypeToExtensionMap: Readonly<{ readonly 'image/png': "png"; readonly 'image/jpeg': "jpg"; readonly 'image/gif': "gif"; readonly 'image/webp': "webp"; readonly 'image/x-icon': "ico"; readonly 'image/vnd.microsoft.icon': "ico"; }>; type SupportedMimeType = keyof typeof MimeTypeToExtensionMap; declare const extension: (mimeType: SupportedMimeType) => string; //#endregion export { SupportedMimeType, extension, readJSONFile }; //# sourceMappingURL=file.d.ts.map