basant307/AI_Governance_Project
048
1export default blobFromSync;2/**3 * @param {string} path filepath on the disk4 * @param {string} [type] mimetype to use5 */6export function blobFromSync(path: string, type?: string): Blob;7import File from "./file.js";8import Blob from "./index.js";9/**10 * @param {string} path filepath on the disk11 * @param {string} [type] mimetype to use12 * @returns {Promise<Blob>}13 */14export function blobFrom(path: string, type?: string): Promise<Blob>;15/**16 * @param {string} path filepath on the disk17 * @param {string} [type] mimetype to use18 * @returns {Promise<File>}19 */20export function fileFrom(path: string, type?: string): Promise<File>;21/**22 * @param {string} path filepath on the disk23 * @param {string} [type] mimetype to use24 */25export function fileFromSync(path: string, type?: string): File;26export { File, Blob };27 