Rocky_Mountain_Vending/.pnpm-store/v10/files/5a/4b0061037b99e15bca2c32983ab3e0feb2856bb4250c6d0fa74fc03220bfaef1370e2453594f49ed3f499d1c0430d90df499b116ebe8f32a5c9d2fc20e9bb2
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

22 lines
1.4 KiB
Text

import type { CacheNodeSeedData, FlightRouterState, FlightSegmentPath } from '../../../shared/lib/app-router-types';
import type { CacheNode, ReadyCacheNode } from '../../../shared/lib/app-router-types';
import type { HeadData } from '../../../shared/lib/app-router-types';
import type { FetchServerResponseResult } from './fetch-server-response';
type SPANavigationTask = {
route: FlightRouterState;
node: CacheNode | null;
dynamicRequestTree: FlightRouterState | null;
children: Map<string, SPANavigationTask> | null;
};
type MPANavigationTask = {
route: null;
node: null;
dynamicRequestTree: null;
children: null;
};
export type Task = SPANavigationTask | MPANavigationTask;
export declare function startPPRNavigation(navigatedAt: number, oldUrl: URL, oldCacheNode: CacheNode, oldRouterState: FlightRouterState, newRouterState: FlightRouterState, prefetchData: CacheNodeSeedData | null, prefetchHead: HeadData | null, isPrefetchHeadPartial: boolean, isSamePageNavigation: boolean, scrollableSegmentsResult: Array<FlightSegmentPath>): Task | null;
export declare function listenForDynamicRequest(task: SPANavigationTask, responsePromise: Promise<FetchServerResponseResult>): void;
export declare function abortTask(task: SPANavigationTask, error: any, debugInfo: Array<any> | null): void;
export declare function updateCacheNodeOnPopstateRestoration(oldCacheNode: CacheNode, routerState: FlightRouterState): ReadyCacheNode;
export {};