UNPKG

@codibre/fluent-iterable

Version:

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

5 lines (4 loc) 279 B
export type SpecialType = { [key in 'group' | 'groupAsync' | 'partition' | 'next']: Function; }; export declare function mountSpecial({ group, groupAsync, partition, next }: Partial<SpecialType>, wrapper: (...args: any[]) => any, asyncWrapper: (...args: any[]) => any): any;