biketrack-app/node_modules/fetch-blob/from.d.ts

8 lines
175 B
TypeScript
Raw Normal View History

2022-07-11 10:27:11 +02:00
export = blobFrom;
/**
* @param {string} path filepath on the disk
* @returns {Blob}
*/
declare function blobFrom(path: string): Blob;
import Blob = require("./index.js");