| 137 | * @internal |
| 138 | */ |
| 139 | export interface PeekableAsyncIterable<T> extends AsyncIterable<T> { |
| 140 | [Symbol.asyncIterator](): PeekableAsyncIterator<T>; |
| 141 | } |
| 142 | |
| 143 | /** |
| 144 | * Wraps an async iterable to provide peek functionality, allowing you to look at |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…