diff --git a/openpgp.d.ts b/openpgp.d.ts index a0c418aa..be7f12e7 100644 --- a/openpgp.d.ts +++ b/openpgp.d.ts @@ -531,7 +531,7 @@ export class PacketList extends Array { /* ############## v5 STREAM #################### */ type Data = Uint8Array | string; -interface BaseStream { } +interface BaseStream extends AsyncIterable { } interface WebStream extends BaseStream { // 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;