UNPKG

@codibre/fluent-iterable

Version:

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

5 lines (4 loc) 294 B
import { AnyIterable } from 'augmentative-iterable'; import { BasicReduceIngredients } from './ingredients'; import { AnyMapper } from '../types-internal'; export declare function sumRecipe({ reduce, resolver }: BasicReduceIngredients): <T>(this: AnyIterable<T>, mapper?: AnyMapper<T>) => any;