Rocky_Mountain_Vending/.pnpm-store/v10/files/b3/22d2d28c9a3fd47bb43a72db9aa07f842dca9a93d9544a19fb374bdb25915033d2215198c7c6b8893fe7a5e19d23d7e11be4aad579046f555ce8e3d4f2939d
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

13 lines
636 B
Text

import type { IncomingMessage, ServerResponse } from 'node:http';
import { AppPageRouteModule } from '../../server/route-modules/app-page/module.compiled';
import GlobalError from 'VAR_MODULE_GLOBAL_ERROR';
export { GlobalError };
export declare const __next_app__: {
require: (id: string | number) => unknown;
loadChunk: (id: string | number) => Promise<unknown>;
};
export * from '../../server/app-render/entry-base';
export declare const routeModule: AppPageRouteModule;
export declare function handler(req: IncomingMessage, res: ServerResponse, ctx: {
waitUntil: (prom: Promise<void>) => void;
}): Promise<void | null>;