UNPKG

@uppy/utils

Version:

Shared utility functions for Uppy Core and plugins maintained by the Uppy team.

10 lines 303 B
interface ObjectWithMIMEAndName { name?: string; mimeType: unknown; } export default function remoteFileObjToLocal<T extends ObjectWithMIMEAndName>(file: T): T & { type: T['mimeType']; extension: string | undefined | null; }; export {}; //# sourceMappingURL=remoteFileObjToLocal.d.ts.map