Rocky_Mountain_Vending/.pnpm-store/v10/files/6f/c2e8e37543af728264a3139abcb4c9790eb85362ce322067f31590356dd563c54ed473ee94d6155488b41562c7501db039fff6871be111623ccd20550406bd
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
345 B
Text

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