| 275 | // This is similar to toStreamable but can return async iterables or promises. |
| 276 | { |
| 277 | class LazyData { |
| 278 | constructor(private getData: () => Promise<string>) {} |
| 279 | |
| 280 | // Async protocol - can return promises or async iterables |
nothing calls this directly
no outgoing calls
no test coverage detected