Rocky_Mountain_Vending/.pnpm-store/v10/files/e9/203d3ca8cd0e5e680e2df31f818300ad9572a0bc7d73167463f3bbc4f8c745d3d41da281f0bb915a7b03ef36872916d169babd6474ed6fbb93d23f6a9b5d73
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

10 lines
477 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 interface LargestImagePaintData {
lcpRequestByNavigationId: Map<string, Types.Events.SyntheticNetworkRequest>;
}
export declare function data(): LargestImagePaintData;
export declare function deps(): HandlerName[];