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.

15 lines (14 loc) 613 B
/** * @module Collection */ import type { CrossJoinResult, ICollection } from "../../../../collection/contracts/_module-exports.js"; /** * @internal */ export declare class CrossJoinIterable<TInput, TExtended = TInput> implements Iterable<CrossJoinResult<TInput, TExtended>> { private readonly collection; private readonly iterable; private readonly makeCollection; constructor(collection: ICollection<TInput>, iterable: Iterable<TExtended>, makeCollection: <TInput>(iterable: Iterable<TInput>) => ICollection<TInput>); [Symbol.iterator](): Iterator<CrossJoinResult<TInput, TExtended>>; }