ix
Version:
The Interactive Extensions for JavaScript
12 lines (11 loc) • 422 B
TypeScript
import { AsyncIterableX } from '../../asynciterable/asynciterablex.js';
import { ReduceOptions } from '../../asynciterable/reduceoptions.js';
/**
* @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;
}
}