Initial boiler plate project
This commit is contained in:
23
node_modules/next/dist/client/components/router-reducer/ppr-navigations.d.ts
generated
vendored
Normal file
23
node_modules/next/dist/client/components/router-reducer/ppr-navigations.d.ts
generated
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
/// <reference types="react" />
|
||||
import type { CacheNodeSeedData, FlightRouterState } from '../../../server/app-render/types';
|
||||
import type { CacheNode, ChildSegmentMap } from '../../../shared/lib/app-router-context.shared-runtime';
|
||||
import type { FetchServerResponseResult } from './fetch-server-response';
|
||||
type Task = {
|
||||
route: FlightRouterState;
|
||||
node: CacheNode | null;
|
||||
children: Map<string, Task> | null;
|
||||
};
|
||||
export declare function updateCacheNodeOnNavigation(oldCacheNode: CacheNode, oldRouterState: FlightRouterState, newRouterState: FlightRouterState, prefetchData: CacheNodeSeedData, prefetchHead: React.ReactNode): Task | null;
|
||||
export declare function listenForDynamicRequest(task: Task, responsePromise: Promise<FetchServerResponseResult>): void;
|
||||
export declare function abortTask(task: Task, error: any): void;
|
||||
export declare function updateCacheNodeOnPopstateRestoration(oldCacheNode: CacheNode, routerState: FlightRouterState): {
|
||||
lazyData: null;
|
||||
rsc: import("react").ReactNode;
|
||||
head: import("react").ReactNode;
|
||||
prefetchHead: import("react").ReactNode;
|
||||
prefetchRsc: import("react").ReactNode;
|
||||
loading: import("../../../shared/lib/app-router-context.shared-runtime").LoadingModuleData;
|
||||
parallelRoutes: Map<string, ChildSegmentMap>;
|
||||
lazyDataResolved: boolean;
|
||||
};
|
||||
export {};
|
||||
Reference in New Issue
Block a user