Rocky_Mountain_Vending/.pnpm-store/v10/files/ee/d78d637de87d3b4b60231e2645110f237f0bbaf663a058dae1fb3f842cc6695e95a2c851df73eb2670b32b7b49925672cc1c11a7f4d8dd777a6135884323be
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

25 lines
1.3 KiB
Text

import type { FlightRouterState } from '../../shared/lib/app-router-types';
import type { Params } from '../../server/request/params';
import { type InstrumentedPromise, type NavigationPromises } from '../../shared/lib/hooks-client-context.shared-runtime';
/**
* Promises are cached by tree to ensure stability across suspense retries.
*/
type LayoutSegmentPromisesCache = {
selectedLayoutSegmentPromises: Map<string, InstrumentedPromise<string | null>>;
selectedLayoutSegmentsPromises: Map<string, InstrumentedPromise<string[]>>;
};
/**
* Creates instrumented promises for layout segment hooks at a given tree level.
* This is dev-only code for React Suspense DevTools instrumentation.
*/
export declare function createLayoutSegmentPromises(tree: FlightRouterState): LayoutSegmentPromisesCache | null;
/**
* Creates instrumented navigation promises for the root app-router.
*/
export declare function createRootNavigationPromises(tree: FlightRouterState, pathname: string, searchParams: URLSearchParams, pathParams: Params): NavigationPromises | null;
/**
* Creates merged navigation promises for nested layouts.
* Merges parent promises with layout-specific segment promises.
*/
export declare function createNestedLayoutNavigationPromises(tree: FlightRouterState, parentNavPromises: NavigationPromises | null): NavigationPromises | null;
export {};