Rocky_Mountain_Vending/.pnpm-store/v10/files/3d/02772d21a7cdfba95f8330b7d92672157a7319d68d389f7ef4a17fcc5534f13c0d4dccab1604465fd0c6c0a56ce2a580dc04131e7fa88c08ead205e0426db8
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

9 lines
791 B
Text

import { AppRouteRouteModule } from '../../server/route-modules/app-route/module.compiled';
import type { IncomingMessage, ServerResponse } from 'node:http';
declare const routeModule: AppRouteRouteModule;
declare const workAsyncStorage: import("../../server/app-render/work-async-storage.external").WorkAsyncStorage, workUnitAsyncStorage: import("../../server/app-render/work-unit-async-storage.external").WorkUnitAsyncStorage, serverHooks: typeof import("../../client/components/hooks-server-context");
declare function patchFetch(): void;
export { routeModule, workAsyncStorage, workUnitAsyncStorage, serverHooks, patchFetch, };
export declare function handler(req: IncomingMessage, res: ServerResponse, ctx: {
waitUntil: (prom: Promise<void>) => void;
}): Promise<null | undefined>;