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