fix(core): Updated dependencies and added close method to VirtualStream

This commit is contained in:
2024-09-06 13:02:04 +02:00
parent 360c8a618b
commit 6beadb8cfc
6 changed files with 681 additions and 574 deletions

View File

@@ -377,4 +377,8 @@ export class VirtualStream<T = Uint8Array> implements plugins.typedRequestInterf
await writer.write(await this.fetchData());
}
}
public async close() {
this.keepAlive = false;
}
}