fix(core): update

This commit is contained in:
Philipp Kunz 2024-02-23 20:18:19 +01:00
parent b538c4fbdb
commit 9638f74440
2 changed files with 7 additions and 2 deletions

View File

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

View File

@ -118,7 +118,12 @@ export interface IUnifiedStreamDataPackage {
keepAlive?: boolean;
/**
* is there more data scheduled to be sent?
* is backpressure detected on the readable side?
*/
backpressure?: boolean;
/**
* does the writable side have more data scheduled to be sent?
*/
next?: boolean;
}