@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) • 381 B
TypeScript
/**
* @module Collection
*/
import { type AsyncIterableValue } from "../../../../utilities/_module-exports.js";
/**
* @internal
*/
export declare class AsyncMergeIterable<TInput> implements AsyncIterable<TInput> {
private readonly iterables;
constructor(iterables: AsyncIterableValue<AsyncIterableValue<TInput>>);
[Symbol.asyncIterator](): AsyncIterator<TInput>;
}