39 lines
1.4 KiB
TypeScript
39 lines
1.4 KiB
TypeScript
import type { ReactNode } from 'react';
|
|
import type { CacheNode } from '../../../shared/lib/app-router-context.shared-runtime';
|
|
import type { FlightRouterState } from '../../../server/app-render/types';
|
|
import { CacheStates } from '../../../shared/lib/app-router-context.shared-runtime';
|
|
export interface InitialRouterStateParameters {
|
|
buildId: string;
|
|
initialTree: FlightRouterState;
|
|
initialCanonicalUrl: string;
|
|
children: ReactNode;
|
|
initialParallelRoutes: CacheNode['parallelRoutes'];
|
|
isServer: boolean;
|
|
location: Location | null;
|
|
initialHead: ReactNode;
|
|
}
|
|
export declare function createInitialRouterState({ buildId, initialTree, children, initialCanonicalUrl, initialParallelRoutes, isServer, location, initialHead, }: InitialRouterStateParameters): {
|
|
buildId: string;
|
|
tree: FlightRouterState;
|
|
cache: {
|
|
status: CacheStates.READY;
|
|
data: null;
|
|
head?: ReactNode;
|
|
subTreeData: ReactNode;
|
|
parallelRoutes: Map<string, import("../../../shared/lib/app-router-context.shared-runtime").ChildSegmentMap>;
|
|
};
|
|
prefetchCache: Map<any, any>;
|
|
pushRef: {
|
|
pendingPush: boolean;
|
|
mpaNavigation: boolean;
|
|
};
|
|
focusAndScrollRef: {
|
|
apply: boolean;
|
|
onlyHashChange: boolean;
|
|
hashFragment: null;
|
|
segmentPaths: never[];
|
|
};
|
|
canonicalUrl: string;
|
|
nextUrl: string | null;
|
|
};
|