Edit gitignore file
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import type { ReactNode } from 'react';
|
||||
import type { CacheNode } from 'next/dist/shared/lib/app-router-context.shared-runtime';
|
||||
import type { FlightRouterState, CacheNodeSeedData } from 'next/dist/server/app-render/types';
|
||||
import { type PrefetchCacheEntry } from 'next/dist/client/components/router-reducer/router-reducer-types';
|
||||
import type { CacheNode } from '../../../shared/lib/app-router-context.shared-runtime';
|
||||
import type { FlightRouterState, CacheNodeSeedData } from '../../../server/app-render/types';
|
||||
import { type PrefetchCacheEntry } from './router-reducer-types';
|
||||
export interface InitialRouterStateParameters {
|
||||
buildId: string;
|
||||
initialTree: FlightRouterState;
|
||||
@@ -15,7 +15,7 @@ export interface InitialRouterStateParameters {
|
||||
export declare function createInitialRouterState({ buildId, initialTree, initialSeedData, urlParts, initialParallelRoutes, location, initialHead, couldBeIntercepted, }: InitialRouterStateParameters): {
|
||||
buildId: string;
|
||||
tree: FlightRouterState;
|
||||
cache: import("next/dist/shared/lib/app-router-context.shared-runtime").ReadyCacheNode;
|
||||
cache: import("../../../shared/lib/app-router-context.shared-runtime").ReadyCacheNode;
|
||||
prefetchCache: Map<string, PrefetchCacheEntry>;
|
||||
pushRef: {
|
||||
pendingPush: boolean;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import type { FlightRouterState, FlightData } from 'next/dist/server/app-render/types';
|
||||
import { PrefetchKind } from 'next/dist/client/components/router-reducer/router-reducer-types';
|
||||
import type { FlightRouterState, FlightData } from '../../../server/app-render/types';
|
||||
import { PrefetchKind } from './router-reducer-types';
|
||||
export type FetchServerResponseResult = [
|
||||
flightData: FlightData,
|
||||
canonicalUrlOverride: URL | undefined,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import type { CacheNode } from 'next/dist/shared/lib/app-router-context.shared-runtime';
|
||||
import type { FlightRouterState, FlightSegmentPath } from 'next/dist/server/app-render/types';
|
||||
import type { FetchServerResponseResult } from 'next/dist/client/components/router-reducer/fetch-server-response';
|
||||
import type { CacheNode } from '../../../shared/lib/app-router-context.shared-runtime';
|
||||
import type { FlightRouterState, FlightSegmentPath } from '../../../server/app-render/types';
|
||||
import type { FetchServerResponseResult } from './fetch-server-response';
|
||||
export declare const ACTION_REFRESH = "refresh";
|
||||
export declare const ACTION_NAVIGATE = "navigate";
|
||||
export declare const ACTION_RESTORE = "restore";
|
||||
|
||||
Reference in New Issue
Block a user