mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
Back to any
This commit is contained in:
2
packages/bun-types/globals.d.ts
vendored
2
packages/bun-types/globals.d.ts
vendored
@@ -2145,7 +2145,7 @@ declare var Loader: {
|
||||
};
|
||||
|
||||
/** This Streams API interface represents a readable stream of byte data. The Fetch API offers a concrete instance of a ReadableStream through the body property of a Response object. */
|
||||
interface ReadableStream<R extends Uint8Array | string = Uint8Array | string> {
|
||||
interface ReadableStream<R = any> {
|
||||
readonly locked: boolean;
|
||||
cancel(reason?: any): Promise<void>;
|
||||
getReader(): ReadableStreamDefaultReader<R>;
|
||||
|
||||
Reference in New Issue
Block a user