UNPKG

iteragain

Version:

Javascript Iterable/Iterator/Generator-function utilities.

9 lines 367 B
export declare class RoundrobinIterator implements IterableIterator<any> { protected iterators: Iterator<any>[]; protected i: number; constructor(iterators: Iterator<any>[]); [Symbol.iterator](): IterableIterator<any>; next(...args: any[]): IteratorResult<any>; } export default RoundrobinIterator; //# sourceMappingURL=RoundrobinIterator.d.ts.map