aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred SUmner <jarred@jarredsumner.com> 2022-11-12 20:27:04 -0800
committerGravatar Jarred SUmner <jarred@jarredsumner.com> 2022-11-12 20:28:10 -0800
commit7da520b22e2d6216a28e67382bcf6e0450e851b5 (patch)
treee3882be7b11ee4100683648e2c5c6ff0fda0dae7
parent45dc75b3be6f4668045c0850f659faaf4a4df425 (diff)
downloadbun-7da520b22e2d6216a28e67382bcf6e0450e851b5.tar.gz
bun-7da520b22e2d6216a28e67382bcf6e0450e851b5.tar.zst
bun-7da520b22e2d6216a28e67382bcf6e0450e851b5.zip
Add missing type
Diffstat (limited to '')
-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.