| 142 | * ``` |
| 143 | */ |
| 144 | export interface AsyncIterableIteratorToArray<V> |
| 145 | extends AsyncIterableIterator<V> { |
| 146 | toArray(): Promise<V[]>; |
| 147 | } |
| 148 | |
| 149 | class AsyncIterableIteratorToArrayWrapperImpl<V> |
| 150 | implements AsyncIterableIterator<V> |
nothing calls this directly
no outgoing calls
no test coverage detected