UNPKG

ix

Version:

The Interactive Extensions for JavaScript

12 lines (11 loc) 422 B
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; } }