/** * 检查一个 Blob 或 File 的类型是否为图片,并返回具体类型 * @returns 如果是图片,返回 { ext: string, mime: string },否则返回 undefined */ export declare function checkImageType(blob: Blob | File): Promise<{ ext: string; mime: string; } | void>; //# sourceMappingURL=checkImageType.d.ts.map