frontend/.pnpm-store/v3/files/ce/bd5a0355959146e3dcbef66583d3f216d163e964539c0a0cbc708097646b2499388374527a4b45763ef4f598f8fce2c7a76d5098128bb9612305d81ef747a6

5 lines
455 B
Plaintext

import { OperatorFunction } from '../types';
export declare function scan<V, A = V>(accumulator: (acc: A | V, value: V, index: number) => A): OperatorFunction<V, V | A>;
export declare function scan<V, A>(accumulator: (acc: A, value: V, index: number) => A, seed: A): OperatorFunction<V, A>;
export declare function scan<V, A, S>(accumulator: (acc: A | S, value: V, index: number) => A, seed: S): OperatorFunction<V, A>;
//# sourceMappingURL=scan.d.ts.map