Rocky_Mountain_Vending/.pnpm-store/v10/files/06/c652b241da8e812c77a75e8bd1ccde214d89d3a79f95512223f58442d6365e8154c671c40be2c91ccb9195777e2d6ad88a9a640fe5b24cd7d454acc0be7b23
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

12 lines
623 B
Text

import * as Types from '../types/types.js';
import type { HandlerName } from './types.js';
export declare function reset(): void;
export declare function handleEvent(event: Types.Events.Event): void;
export declare function finalize(): Promise<void>;
export declare function screenshotImageDataUri(event: Types.Events.LegacySyntheticScreenshot | Types.Events.Screenshot): string;
export interface Data {
legacySyntheticScreenshots: Types.Events.LegacySyntheticScreenshot[] | null;
screenshots: Types.Events.Screenshot[] | null;
}
export declare function data(): Data;
export declare function deps(): HandlerName[];