@googleforcreators/media
Version:
Functionality for creating and working with media resources in the Web Stories editor.
11 lines • 308 B
TypeScript
/**
* Create a new File from a Blob instance.
*
* @param blob Blob object.
* @param filename File name.
* @param type Mime type.
* @return File object.
*/
declare function blobToFile(blob: Blob, filename: string, type: string): File;
export default blobToFile;
//# sourceMappingURL=blobToFile.d.ts.map