Rocky_Mountain_Vending/.pnpm-store/v10/files/bc/b59c9381ae8eff3a1b0d5dd3a4bb079b0d41200d4edb747cfbd24161348416d6345f9694032b22d4d02d172cd61f858a13cebbb3916840e05221223f098b66
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

17 lines
781 B
Text

import * as Types from '../types/types.js';
import type { FinalizeOptions } from './types.js';
export declare function reset(): void;
export declare function handleEvent(event: Types.Events.Event): void;
export declare function finalize(options: FinalizeOptions): Promise<void>;
export interface ImagePaintData {
paintImageByDrawLazyPixelRef: Map<number, Types.Events.PaintImage>;
paintImageForEvent: Map<Types.Events.Event, Types.Events.PaintImage>;
paintImageEventForUrl: Map<string, Types.Events.PaintImage[]>;
paintEventToCorrectedDisplaySize: Map<Types.Events.PaintImage, {
width: number;
height: number;
}>;
/** Go read the comment in finalize(). */
didCorrectForHostDpr: boolean;
}
export declare function data(): ImagePaintData;