Rocky_Mountain_Vending/.pnpm-store/v10/files/30/fe8a0bfef96cf19cbc78d543a389f00a419090cc00f13ae87ccb71c83415e0ab5e40b171ec5c893299e3f1f334ba7ba5c587bdfad248bad39a2c19e4ef28c2
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

5 lines
526 B
Text

import type { LoaderTree } from '../lib/app-dir-module';
import { type FlightRouterState } from '../../shared/lib/app-router-types';
import type { GetDynamicParamFromSegment } from './app-render';
export declare function createFlightRouterStateFromLoaderTree(loaderTree: LoaderTree, getDynamicParamFromSegment: GetDynamicParamFromSegment, searchParams: any): FlightRouterState;
export declare function createRouteTreePrefetch(loaderTree: LoaderTree, getDynamicParamFromSegment: GetDynamicParamFromSegment): FlightRouterState;