@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.
14 lines (13 loc) • 452 B
TypeScript
/**
* @module Collection
*/
import { type AsyncIterableValue } from "../../../../utilities/_module-exports.js";
/**
* @internal
*/
export declare class AsyncZipIterable<TInput, TExtended> implements AsyncIterable<[TInput, TExtended]> {
private iterableA;
private iterableB;
constructor(iterableA: AsyncIterableValue<TInput>, iterableB: AsyncIterableValue<TExtended>);
[Symbol.asyncIterator](): AsyncIterator<[TInput, TExtended]>;
}