fix(core): update

This commit is contained in:
Philipp Kunz 2024-02-24 14:51:08 +01:00
parent b680ab8c23
commit b34e88123d
2 changed files with 3 additions and 1 deletions

View File

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

View File

@ -82,6 +82,8 @@ export interface IVirtualStream<T = ArrayBufferLike> {
// Properties // Properties
side: 'requesting' | 'responding'; side: 'requesting' | 'responding';
streamId: string; streamId: string;
sendMethod: any;
typedrouter: any;
// Methods // Methods
handleStreamTr(streamTrArg: IStreamRequest): Promise<IStreamRequest>; handleStreamTr(streamTrArg: IStreamRequest): Promise<IStreamRequest>;