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,15 +1,15 @@
/// <reference types="node" />
import type { IncomingMessage, ServerResponse } from 'http';
import type { ActionResult, DynamicParamTypesShort, FlightRouterState, FlightSegmentPath, RenderOpts, Segment } from 'next/dist/server/app-render/types';
import type { StaticGenerationStore } from 'next/dist/client/components/static-generation-async-storage.external';
import type { RequestStore } from 'next/dist/client/components/request-async-storage.external';
import type { NextParsedUrlQuery } from 'next/dist/server/request-meta';
import type { AppPageModule } from 'next/dist/server/future/route-modules/app-page/module';
import type { ClientReferenceManifest } from 'next/dist/build/webpack/plugins/flight-manifest-plugin';
import type { Revalidate } from 'next/dist/server/lib/revalidate';
import RenderResult, { type AppPageRenderResultMetadata } from 'next/dist/server/render-result';
import { type ErrorHandler } from 'next/dist/server/app-render/create-error-handler';
import type { DeepReadonly } from 'next/dist/shared/lib/deep-readonly';
import type { ActionResult, DynamicParamTypesShort, FlightRouterState, FlightSegmentPath, RenderOpts, Segment } from './types';
import type { StaticGenerationStore } from '../../client/components/static-generation-async-storage.external';
import type { RequestStore } from '../../client/components/request-async-storage.external';
import type { NextParsedUrlQuery } from '../request-meta';
import type { AppPageModule } from '../future/route-modules/app-page/module';
import type { ClientReferenceManifest } from '../../build/webpack/plugins/flight-manifest-plugin';
import type { Revalidate } from '../lib/revalidate';
import RenderResult, { type AppPageRenderResultMetadata } from '../render-result';
import { type ErrorHandler } from './create-error-handler';
import type { DeepReadonly } from '../../shared/lib/deep-readonly';
export type GetDynamicParamFromSegment = (segment: string) => {
param: string;
value: string | string[] | null;