import { getDownloadURL, ref, uploadBytesResumable } from 'firebase/storage'; import { storage } from 'src/lib/firebase'; /** * Uploads a file to Firebase Cloud Storage. * * @param data - The file in Blob format to be uploaded. * @param path - The path in Firebase Storage where the file should be stored. * @returns A promise that resolves with the download URL of the uploaded file. */ async function uploadToFirebaseStorage( data: Blob | Uint8Array | ArrayBuffer, path: string ): Promise { const storageRef = ref(storage, path); // Upload the Blob await uploadBytesResumable(storageRef, data); const url = await getDownloadURL(storageRef); return url; } export default uploadToFirebaseStorage;