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>
7 lines
540 B
Text
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;
|