-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Streams must be an internal-created async iterable objects instead of bufferized streams.
- Readable must implement:
[Symbol.asyncIterable](): AsyncIteratorcatch(callback: (error: Error) => void): voidstop(): Promise<void>
- Writable must implement:
next(value: any): Promise<void>throw(error: Error): Promise<void>stop(): Promise<void>
- Duplex must implement:
[Symbol.asyncIterable](): AsyncIteratornext(value: any): Promise<void>catch(callback: (error: Error) => void): voidthrow(error: Error): Promise<void>stop(): Promise<void>
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request