update, text, response
This commit is contained in:
6
node_modules/readable-web-to-node-stream/lib/index.d.ts
generated
vendored
6
node_modules/readable-web-to-node-stream/lib/index.d.ts
generated
vendored
@@ -16,16 +16,16 @@ export declare class ReadableWebToNodeStream extends Readable {
|
||||
private pendingRead;
|
||||
/**
|
||||
*
|
||||
* @param stream ReadableStream: https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream
|
||||
* @param stream ReadableStream: https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream
|
||||
*/
|
||||
constructor(stream: ReadableStream);
|
||||
constructor(stream: ReadableStream | ReadableStream<Uint8Array>);
|
||||
/**
|
||||
* Implementation of readable._read(size).
|
||||
* When readable._read() is called, if data is available from the resource,
|
||||
* the implementation should begin pushing that data into the read queue
|
||||
* https://nodejs.org/api/stream.html#stream_readable_read_size_1
|
||||
*/
|
||||
_read(): Promise<void>;
|
||||
_read(): void;
|
||||
/**
|
||||
* If there is no unresolved read call to Web-API ReadableStream immediately returns;
|
||||
* otherwise will wait until the read is resolved.
|
||||
|
||||
Reference in New Issue
Block a user