aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/bun-types/globals.d.ts2
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.