UNPKG

@codibre/fluent-iterable

Version:

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

5 lines (4 loc) 311 B
import { AnyIterable } from 'augmentative-iterable'; import { FunctionAnyMapper } from '../types-internal'; import { BasicIngredients } from './ingredients'; export declare function executeRecipe({ map, resolver }: BasicIngredients): <T>(this: AnyIterable<T>, action: FunctionAnyMapper<T>) => AnyIterable<any>;