UNPKG

axax

Version:

A library of async iterator extensions for JavaScript including ```map```, ```reduce```, ```filter```, ```flatMap```, ```pipe``` and [more](https://github.com/jamiemccrindle/axax/blob/master/docs/API.md#functions).

7 lines (6 loc) 183 B
/** * Combines iterables * * @param sources the iterables to combine */ export declare function combineLatest<T>(...sources: Array<AsyncIterable<T>>): AsyncIterableIterator<T[]>;