diff options
-rw-r--r-- | packages/bun-types/globals.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/bun-types/globals.d.ts b/packages/bun-types/globals.d.ts index 1c6474297..86eb4c3d1 100644 --- a/packages/bun-types/globals.d.ts +++ b/packages/bun-types/globals.d.ts @@ -369,7 +369,7 @@ declare class Blob implements BlobInterface { /** * Read the data from the blob as a ReadableStream. */ - stream(): ReadableStream<Uint8Array>; + stream(chunkSize?: number): ReadableStream<Uint8Array>; /** * Read the data from the blob as an ArrayBuffer. |