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>
17 lines
781 B
Text
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;
|