Rocky_Mountain_Vending/.pnpm-store/v10/files/22/c2750482d6cbb8e1cffda0c9ac8d2522de9f358a8250d96489a07f06f4e35292bdaefc3f5b143f198fd377656988ff476d27c39700f306c4da1a8598837df6
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
451 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 GPUHandlerReturnData {
mainGPUThreadTasks: readonly Types.Events.GPUTask[];
}
export declare function data(): GPUHandlerReturnData;
export declare function deps(): HandlerName[];