Rocky_Mountain_Vending/.pnpm-store/v10/files/ce/bd5a0355959146e3dcbef66583d3f216d163e964539c0a0cbc708097646b2499388374527a4b45763ef4f598f8fce2c7a76d5098128bb9612305d81ef747a6
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

5 lines
No EOL
455 B
Text

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