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
667 B
Text
7 lines
667 B
Text
import type { FlightRouterState, FlightSegmentPath } from '../../../../shared/lib/app-router-types';
|
|
import type { Mutable, NavigateAction, ReadonlyReducerState, ReducerState } from '../router-reducer-types';
|
|
export declare const DYNAMIC_STALETIME_MS: number;
|
|
export declare const STATIC_STALETIME_MS: number;
|
|
export declare function handleExternalUrl(state: ReadonlyReducerState, mutable: Mutable, url: string, pendingPush: boolean): ReducerState;
|
|
export declare function generateSegmentsFromPatch(flightRouterPatch: FlightRouterState): FlightSegmentPath[];
|
|
export declare function navigateReducer(state: ReadonlyReducerState, action: NavigateAction): ReducerState;
|