UNPKG

fast-iterable

Version:

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

5 lines (4 loc) 287 B
export declare 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;