Rocky_Mountain_Vending/.pnpm-store/v10/files/14/2920536805517f07b5062e90923356daf7863d1fc6e29932846cf403d652402a25bf00e5e5233fc49360e044bcac21a546d77ef0d56a05766e2e9a3978c6d8
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

8 lines
350 B
Text

import * as Types from '../types/types.js';
export interface AnimationData {
animations: readonly Types.Events.SyntheticAnimationPair[];
}
export declare function reset(): void;
export declare function handleEvent(event: Types.Events.Event): void;
export declare function finalize(): Promise<void>;
export declare function data(): AnimationData;