(hashes: Uint8Array[])
| 208 | } |
| 209 | |
| 210 | fetchObjects(hashes: Uint8Array[]): ReadableStream<{ hash: Uint8Array; bytes: Uint8Array }> { |
| 211 | return iterableToReadableStream(fetchObjects(this.db, hashes)); |
| 212 | } |
| 213 | |
| 214 | async pushObjects( |
| 215 | objects: ReadableStream<{ hash: Uint8Array; bytes: Uint8Array }>, |
nothing calls this directly
no test coverage detected