fix(core): update

This commit is contained in:
Philipp Kunz 2024-02-29 19:41:34 +01:00
parent ec7fa07855
commit 854cc93644
2 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@api.global/typedrequest-interfaces',
version: '3.0.17',
version: '3.0.18',
description: 'interfaces for making typed requests'
}

View File

@ -90,7 +90,8 @@ export interface IVirtualStream<T = ArrayBufferLike> {
cleanup(): Promise<void>;
sendData(dataArg: T): Promise<void>;
fetchData(): Promise<T>;
pipeWebStream(webStream: any): void; // Consider defining a more specific type for webStream if possible
readFromWebstream(readableStreamArg: ReadableStream<T>): Promise<void>;
writeToWebstream(wwritableStreamArg: WritableStream<T>): Promise<void>; // Consider defining a more specific type for webStream if possible
}
export interface IUnifiedStreamDataPackage {