@reactivex/ix-esnext-esm
Version:
The Interactive Extensions for JavaScript
9 lines (8 loc) • 511 B
TypeScript
import { IterableX } from '../../iterable/iterablex';
export declare function reduceRightProto<T, R = T>(this: IterableX<T>, accumulator: (previousValue: R, currentValue: T, currentIndex: number) => R, seed?: never[]): R;
export declare function reduceRightProto<T, R = T>(this: IterableX<T>, accumulator: (previousValue: R, currentValue: T, currentIndex: number) => R, seed?: R): R;
declare module '../../iterable/iterablex' {
interface IterableX<T> {
reduceRight: typeof reduceRightProto;
}
}