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,8 +1,8 @@
import type { ReactNode } from 'react';
import type { CacheNode } from 'next/dist/shared/lib/app-router-context.shared-runtime';
import type { ErrorComponent } from 'next/dist/client/components/error-boundary';
import type { ServerActionDispatcher } from 'next/dist/client/components/router-reducer/router-reducer-types';
import type { InitialRouterStateParameters } from 'next/dist/client/components/router-reducer/create-initial-router-state';
import type { CacheNode } from '../../shared/lib/app-router-context.shared-runtime';
import type { ErrorComponent } from './error-boundary';
import type { ServerActionDispatcher } from './router-reducer/router-reducer-types';
import type { InitialRouterStateParameters } from './router-reducer/create-initial-router-state';
export declare function getServerActionDispatcher(): ServerActionDispatcher | null;
export declare function urlToUrlWithoutFlightMarker(url: string): URL;
type AppRouterProps = Omit<Omit<InitialRouterStateParameters, 'isServer' | 'location'>, 'initialParallelRoutes'> & {