Rocky_Mountain_Vending/.pnpm-store/v10/files/f0/c8929dcd35b3a0a81c9acf7f435d669b112edbdaa7efc42ba5ef485dfa85102815de54282fea319ca0f3599531adf518874bc129bd8875333eee1a0c02326d
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

33 lines
1.3 KiB
Text

import type { AppType, DocumentType, NextComponentType } from '../shared/lib/utils';
import type { ClientReferenceManifest } from '../build/webpack/plugins/flight-manifest-plugin';
import type { PageConfig, GetStaticPaths, GetServerSideProps, GetStaticProps } from '../types';
import type { RouteModule } from './route-modules/route-module';
import type { BuildManifest } from './get-page-files';
export type ManifestItem = {
id: number | string;
files: string[];
};
export type ReactLoadableManifest = {
[moduleId: string]: ManifestItem;
};
export type LoadComponentsReturnType = {
Component: NextComponentType;
pageConfig: PageConfig;
buildManifest: BuildManifest;
subresourceIntegrityManifest?: Record<string, string>;
reactLoadableManifest: ReactLoadableManifest;
clientReferenceManifest?: ClientReferenceManifest;
serverActionsManifest?: any;
Document: DocumentType;
App: AppType;
getStaticProps?: GetStaticProps;
getStaticPaths?: GetStaticPaths;
getServerSideProps?: GetServerSideProps;
ComponentMod: any;
routeModule: RouteModule;
isAppPath?: boolean;
page: string;
};
declare function loadDefaultErrorComponentsImpl(distDir: string): Promise<LoadComponentsReturnType>;
export declare const loadDefaultErrorComponents: typeof loadDefaultErrorComponentsImpl;
export {};