You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/** |
|
* Reads an entire iterable and converts it into a promise. |
|
* @param asyncIterable the async iterable to wait for. |
|
*/ |
|
export declare function toArray<T>(asyncIterable: AsyncIterable<T> | Iterable<T> | Iterable<Promise<T>>): Promise<T[]>;
|
|
|