@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.
13 lines (12 loc) • 329 B
TypeScript
/**
* @module Collection
*/
import { type IterableValue } from "../../../../utilities/_module.js";
/**
* @internal
*/
export declare class MergeIterable<TInput> implements Iterable<TInput> {
private iterables;
constructor(iterables: IterableValue<IterableValue<TInput>>);
[Symbol.iterator](): Iterator<TInput>;
}