UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

12 lines (11 loc) 387 B
import { IterableX } from '../../iterable/iterablex.js'; import { ExtremaOptions } from '../../iterable/extremaoptions.js'; /** * @ignore */ export declare function maxByProto<TSource, TKey>(this: IterableX<TSource>, options?: ExtremaOptions<TSource, TKey>): TSource[]; declare module '../../iterable/iterablex' { interface IterableX<T> { maxBy: typeof maxByProto; } }