UNPKG

@daiso-tech/core

Version:

The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.

12 lines (11 loc) 248 B
/** * @module Collection */ /** * @internal */ export declare class MergeIterable<TInput> implements Iterable<TInput> { private iterables; constructor(iterables: Iterable<Iterable<TInput>>); [Symbol.iterator](): Iterator<TInput>; }