@reactivex/ix-esnext-esm
Version:
The Interactive Extensions for JavaScript
12 lines (11 loc) • 416 B
TypeScript
import { AsyncIterableX } from '../../asynciterable/asynciterablex';
import { ReduceOptions } from '../../asynciterable/reduceoptions';
/**
* @ignore
*/
export declare function reduceRightProto<T, R = T>(this: AsyncIterableX<T>, options: ReduceOptions<T, R>): Promise<R>;
declare module '../../asynciterable/asynciterablex' {
interface AsyncIterableX<T> {
reduceRight: typeof reduceRightProto;
}
}