Rocky_Mountain_Vending/.pnpm-store/v10/files/5c/3f20a941abb9763b0f29e7fd85b21fec8e73cadc7577f9ebe8dcf1576ba2b59ee7fd3f778f89f81547ab1883da3467d3fcff43e6298e6799d00e70843b6a16
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

8 lines
369 B
Text

import * as Types from '../types/types.js';
export interface MemoryData {
updateCountersByProcess: Map<Types.Events.ProcessID, Types.Events.UpdateCounters[]>;
}
export declare function reset(): void;
export declare function handleEvent(event: Types.Events.Event): void;
export declare function finalize(): Promise<void>;
export declare function data(): MemoryData;