UNPKG

ix

Version:

The Interactive Extensions for JavaScript

13 lines (12 loc) 539 B
import { IterableX } from '../../iterable/iterablex.js'; import { ScanOptions } from '../../iterable/operators/scanoptions.js'; /** * @ignore */ export declare function scanRightProto<T, R = T>(this: IterableX<T>, options: ScanOptions<T, R>): IterableX<R>; export declare function scanRightProto<T, R = T>(this: IterableX<T>, accumulator: (accumulator: R, current: T, index: number) => R, seed?: R): IterableX<R>; declare module '../../iterable/iterablex' { interface IterableX<T> { scanRight: typeof scanRightProto; } }