Back to any

This commit is contained in:
Colin McDonnell
2023-03-29 21:31:00 -07:00
parent 3a0894e305
commit 12cbb28cbf

View File

@@ -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>;