(path: string, data: any, metadata?: UploadMetadata)
| 68 | } |
| 69 | |
| 70 | upload(path: string, data: any, metadata?: UploadMetadata) { |
| 71 | const storageRef = this.storage.ref(path); |
| 72 | const ref = createStorageRef(storageRef, this.injector); |
| 73 | return ref.put(data, metadata); |
| 74 | } |
| 75 | |
| 76 | } |
nothing calls this directly
no test coverage detected