@codibre/fluent-iterable
Version:
Provides LINQ-like fluent api operations for iterables and async iterables (ES2018+).
5 lines (4 loc) • 318 B
TypeScript
import { AnyMapper } from '../types-internal';
import { AnyIterable } from 'augmentative-iterable';
import { BasicReduceIngredients } from './ingredients';
export declare function joinRecipe<T>({ reduce, resolver }: BasicReduceIngredients): (this: AnyIterable<T>, separator: string, baseMapper?: AnyMapper<T>) => any;