UNPKG

@codibre/fluent-iterable

Version:

Provides LINQ-like fluent api operations for iterables and async iterables (ES2018+).

5 lines (4 loc) 354 B
import { AnyIterable } from 'augmentative-iterable'; import { AnyMapper } from '../types-internal'; import { CombineIngredients } from './ingredients'; export declare function combineRecipe(combineFuncs: CombineIngredients): <T, U>(this: AnyIterable<T>, iterable: AnyIterable<U>, baseKeyA?: AnyMapper<T>, baseKeyB?: AnyMapper<U>) => AnyIterable<[T, U]>;