Rocky_Mountain_Vending/.pnpm-store/v10/files/52/cc9f3dcc66cf244cdeedb06921f3779d6da68214550d7418ceb422ab215bcb9501b5836304386cd3c750aaedb935e56c1f029265ce7ab464ae4fbae1004491
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

7 lines
540 B
Text

import type { FlightRouterState } from '../../../shared/lib/app-router-types';
import type { ReadonlyReducerState, ReducerActions } from './router-reducer-types';
/**
* Handles the case where the client router attempted to patch the tree but, due to a mismatch, the patch failed.
* This will perform an MPA navigation to return the router to a valid state.
*/
export declare function handleSegmentMismatch(state: ReadonlyReducerState, action: ReducerActions, treePatch: FlightRouterState): import("./router-reducer-types").ReducerState;