Edit gitignore file

This commit is contained in:
ParkSuMin
2025-02-24 20:17:54 +03:00
parent 9b16274400
commit d7869378b8
349 changed files with 686 additions and 25860 deletions

View File

@@ -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;

View File

@@ -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,

View File

@@ -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";