/opt/canhelp/node_modules/fetch-blob
NameSizeModeActions
file.d.ts1020644editdlrm
file.js12280644editdlrm
from.d.ts8190644editdlrm
from.js26480644editdlrm
index.d.ts1020644editdlrm
index.js74320644editdlrm
LICENSE10680644editdlrm
package.json16460644editdlrm
README.md51060644editdlrm
streams.cjs16040644editdlrm
Edit: /opt/canhelp/node_modules/fetch-blob/from.d.ts (819B)
export default blobFromSync; /** * @param {string} path filepath on the disk * @param {string} [type] mimetype to use */ export function blobFromSync(path: string, type?: string): Blob; import File from "./file.js"; import Blob from "./index.js"; /** * @param {string} path filepath on the disk * @param {string} [type] mimetype to use * @returns {Promise} */ export function blobFrom(path: string, type?: string): Promise; /** * @param {string} path filepath on the disk * @param {string} [type] mimetype to use * @returns {Promise} */ export function fileFrom(path: string, type?: string): Promise; /** * @param {string} path filepath on the disk * @param {string} [type] mimetype to use */ export function fileFromSync(path: string, type?: string): File; export { File, Blob };