Rocky_Mountain_Vending/.pnpm-store/v10/files/45/b9d4513219a2d011fa2a92569c68f2fabfa625f81527dc44459fe21bf69f8f9efb35c8ab14fe03a14aaac57dcc34547f96b30d673798b8b5ff2fcf9b638dcd
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
632 B
Text

import * as Types from '../types/types.js';
import type { HandlerName } from './types.js';
export interface Data {
animationFrames: Types.Events.SyntheticAnimationFramePair[];
presentationForFrame: Map<Types.Events.SyntheticAnimationFramePair, Types.Events.AnimationFramePresentation>;
}
export declare function reset(): void;
export declare function handleUserConfig(config: Types.Configuration.Configuration): void;
export declare function handleEvent(event: Types.Events.Event): void;
export declare function finalize(): Promise<void>;
export declare function data(): Data;
export declare function deps(): HandlerName[];