Rocky_Mountain_Vending/.pnpm-store/v10/files/f1/b70900bf4598418dca12a0748c4bdaebaa34fbb1564790b42392e201d81e50ea49f0716eb5b869e10021b04ec1d502bdb4022a6b580551c8a505629109e6bf
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

24 lines
1.2 KiB
Text

import type { FlightDataPath, FlightRouterState, HeadData } from '../../shared/lib/app-router-types';
import type { PreloadCallbacks } from './types';
import type { LoaderTree } from '../lib/app-dir-module';
import type { AppRenderContext } from './app-render';
/**
* Use router state to decide at what common layout to render the page.
* This can either be the common layout between two pages or a specific place to start rendering from using the "refetch" marker in the tree.
*/
export declare function walkTreeWithFlightRouterState({ loaderTreeToFilter, parentParams, flightRouterState, parentIsInsideSharedLayout, rscHead, injectedCSS, injectedJS, injectedFontPreloadTags, rootLayoutIncluded, ctx, preloadCallbacks, MetadataOutlet, }: {
loaderTreeToFilter: LoaderTree;
parentParams: {
[key: string]: string | string[];
};
flightRouterState?: FlightRouterState;
rscHead: HeadData;
parentIsInsideSharedLayout?: boolean;
injectedCSS: Set<string>;
injectedJS: Set<string>;
injectedFontPreloadTags: Set<string>;
rootLayoutIncluded: boolean;
ctx: AppRenderContext;
preloadCallbacks: PreloadCallbacks;
MetadataOutlet: React.ComponentType;
}): Promise<FlightDataPath[]>;