diff options
author | 2022-11-12 20:27:04 -0800 | |
---|---|---|
committer | 2022-11-12 20:28:10 -0800 | |
commit | 7da520b22e2d6216a28e67382bcf6e0450e851b5 (patch) | |
tree | e3882be7b11ee4100683648e2c5c6ff0fda0dae7 | |
parent | 45dc75b3be6f4668045c0850f659faaf4a4df425 (diff) | |
download | bun-7da520b22e2d6216a28e67382bcf6e0450e851b5.tar.gz bun-7da520b22e2d6216a28e67382bcf6e0450e851b5.tar.zst bun-7da520b22e2d6216a28e67382bcf6e0450e851b5.zip |
Add missing type
-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. |