8 lines
175 B
TypeScript
8 lines
175 B
TypeScript
|
export = blobFrom;
|
||
|
/**
|
||
|
* @param {string} path filepath on the disk
|
||
|
* @returns {Blob}
|
||
|
*/
|
||
|
declare function blobFrom(path: string): Blob;
|
||
|
import Blob = require("./index.js");
|