UNPKG

next

Version:

The React Framework

11 lines (10 loc) 552 B
import type { FlightDataPath } from '../../../shared/lib/app-router-types'; import type { AppRouterState } from './router-reducer-types'; export interface InitialRouterStateParameters { navigatedAt: number; initialCanonicalUrlParts: string[]; initialRenderedSearch: string; initialFlightData: FlightDataPath[]; location: Location | null; } export declare function createInitialRouterState({ navigatedAt, initialFlightData, initialCanonicalUrlParts, initialRenderedSearch, location, }: InitialRouterStateParameters): AppRouterState;