| 130 | * Sync streamable - has Symbol.iterator yielding stream-compatible values. |
| 131 | */ |
| 132 | export interface SyncStreamable { |
| 133 | [Symbol.iterator](): Iterator<SyncStreamableYield>; |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Async streamable - has Symbol.asyncIterator yielding stream-compatible values. |
nothing calls this directly
no outgoing calls
no test coverage detected