fix(core): update

This commit is contained in:
2024-05-05 16:39:42 +02:00
parent 53aece818a
commit dd23719646
4 changed files with 546 additions and 240 deletions

View File

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

View File

@ -78,7 +78,7 @@ export type implementsTag<T, U extends T> = {};
// stream stuff
export interface IVirtualStream<T = ArrayBufferLike> {
export interface IVirtualStream<T = Uint8Array> {
// Properties
side: 'requesting' | 'responding';
streamId: string;