We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5db49ad commit 1c8f668Copy full SHA for 1c8f668
README.md
@@ -247,7 +247,7 @@ const blob = await store.getMetadata('some-key')
247
console.log(blob.etag, blob.metadata)
248
```
249
250
-### `set(key: string, value: ArrayBuffer | Blob | ReadableStream | string, { metadata?: object }): Promise<void>`
+### `set(key: string, value: ArrayBuffer | Blob | string, { metadata?: object }): Promise<void>`
251
252
Creates an object with the given key and value.
253
src/types.ts
@@ -1,4 +1,4 @@
1
-export type BlobInput = ReadableStream | string | ArrayBuffer | Blob
+export type BlobInput = string | ArrayBuffer | Blob
2
3
export type Fetcher = typeof globalThis.fetch
4
0 commit comments