Rocky_Mountain_Vending/.pnpm-store/v10/files/9d/b1b4136be10cb2f8febfc414e1835c0bbbbbb2a8330a5e1d8ac290782f1158bdd2bda67640ecf259df3db7af4e6337e7fe377e13dbbae532e8c869af2c5401
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

17 lines
623 B
Text

import type { AppDirModules } from '../../build/webpack/loaders/next-app-loader';
/**
* LoaderTree is generated in next-app-loader.
*/
export type LoaderTree = [
segment: string,
parallelRoutes: {
[parallelRouterKey: string]: LoaderTree;
},
modules: AppDirModules
];
export declare function getLayoutOrPageModule(loaderTree: LoaderTree): Promise<{
mod: any;
modType: "page" | "layout" | undefined;
filePath: string | undefined;
}>;
export declare function getComponentTypeModule(loaderTree: LoaderTree, moduleType: 'layout' | 'not-found' | 'forbidden' | 'unauthorized'): Promise<any>;