Rocky_Mountain_Vending/.pnpm-store/v10/files/75/f8c7f16f11346877739e9efe4797ce22aaf7ee00af984ed197eb6c567dac7d41dc73591726aac6c453056ac1b5c1e34a72229df502d0fa2b95e66923132d19
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

15 lines
776 B
Text

import type { IncomingMessage, ServerResponse } from 'node:http';
import type { PagesRouteModule } from './module.compiled';
import type { GetServerSideProps, GetStaticPaths, GetStaticProps } from '../../../types';
export declare const getHandler: ({ srcPage: originalSrcPage, config, userland, routeModule, isFallbackError, getStaticPaths, getStaticProps, getServerSideProps, }: {
srcPage: string;
config: Record<string, any> | undefined;
userland: any;
isFallbackError?: boolean;
routeModule: PagesRouteModule;
getStaticProps?: GetStaticProps;
getStaticPaths?: GetStaticPaths;
getServerSideProps?: GetServerSideProps;
}) => (req: IncomingMessage, res: ServerResponse, ctx: {
waitUntil: (prom: Promise<void>) => void;
}) => Promise<void>;