Extend BaseStream<> from AsyncIterable<> (#1373)

Both Web ReadableStreams and Node.js streams are async iterable objects.
This commit is contained in:
Nick Darvey 2021-07-15 21:09:29 +10:00 committed by GitHub
parent e450582888
commit 53f54e1e19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
openpgp.d.ts vendored
View File

@ -531,7 +531,7 @@ export class PacketList<T extends AnyPacket> extends Array<T> {
/* ############## v5 STREAM #################### */
type Data = Uint8Array | string;
interface BaseStream<T extends Data> { }
interface BaseStream<T extends Data> extends AsyncIterable<T> { }
interface WebStream<T extends Data> extends BaseStream<T> { // copied+simplified version of ReadableStream from lib.dom.d.ts
readonly locked: boolean; getReader: Function; pipeThrough: Function; pipeTo: Function; tee: Function;
cancel(reason?: any): Promise<void>;