| 249 | * Sync iterable that yields batches of Uint8Array chunks. |
| 250 | */ |
| 251 | export interface SyncByteStreamReadable { |
| 252 | [Symbol.iterator](): Iterator<Uint8Array[]>; |
| 253 | } |
| 254 | |
| 255 | /** |
| 256 | * Async pair - for event sources, network connections, etc. |
nothing calls this directly
no outgoing calls
no test coverage detected