| 242 | * This is the normalized output type used throughout the API. |
| 243 | */ |
| 244 | export interface ByteStreamReadable { |
| 245 | [Symbol.asyncIterator](): AsyncIterator<Uint8Array[]>; |
| 246 | } |
| 247 | |
| 248 | /** |
| 249 | * Sync iterable that yields batches of Uint8Array chunks. |
nothing calls this directly
no outgoing calls
no test coverage detected