"use strict"; // Stub implementation for Firebase Storage Bucket Object.defineProperty(exports, "__esModule", { value: true }); exports.FirebaseStorageBucketControl = void 0; class FirebaseStorageBucketControl { async upload(data, path) { // Stub implementation - returns a mock URL return `https://storage.googleapis.com/mock-bucket/${path}`; } async download(path) { // Stub implementation - returns empty buffer return Buffer.alloc(0); } async downloadFile(path) { // Stub implementation - returns empty buffer return Buffer.alloc(0); } async saveFile(path, data, options) { // Do nothing - storage disabled } } exports.FirebaseStorageBucketControl = FirebaseStorageBucketControl; //# sourceMappingURL=firebase-storage-bucket.js.map