@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) • 328 B
TypeScript
/**
* @module Collection
*/
/**
* @internal
*/
export declare class ZipIterable<TInput, TExtended> implements Iterable<[TInput, TExtended]> {
private iterableA;
private iterableB;
constructor(iterableA: Iterable<TInput>, iterableB: Iterable<TExtended>);
[Symbol.iterator](): Iterator<[TInput, TExtended]>;
}