@codibre/fluent-iterable
Version:
Provides LINQ-like fluent api operations for iterables and async iterables (ES2018+).
6 lines (5 loc) • 425 B
TypeScript
import { ResolverType } from '../types-internal';
import { AnyMapper } from '../types-internal';
import { AnyIterable } from 'augmentative-iterable';
import { Ingredient, PartitionIngredient } from './ingredients';
export declare function orderedOperationRecipe(map: Ingredient, resolver: ResolverType, partition: PartitionIngredient): <T, R>(this: AnyIterable<T>, baseMapper: AnyMapper<T>) => AnyIterable<AnyIterable<any>>;