Spaces:
Build error
Build error
File size: 823 Bytes
f316cce | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | "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 |