import { ref, deleteObject } from 'firebase/storage'; import { storage } from 'src/lib/firebase'; /** * Deletes a file from Firebase Cloud Storage. * * @param path - The path in Firebase Storage where the file is stored. * @returns A promise that resolves once the deletion is complete. */ async function deleteFromFirebaseStorage(path: string): Promise { const storageRef = ref(storage, path); // Delete the object from the path await deleteObject(storageRef); } export default deleteFromFirebaseStorage;