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;

View File

@@ -19,7 +19,7 @@
* unstable_cache should error. If you want to use some dynamic data inside unstable_cache you should
* read that data outside the cache and pass it in as an argument to the cached function.
*/
import type { StaticGenerationStore } from 'next/dist/client/components/static-generation-async-storage.external';
import type { StaticGenerationStore } from '../../client/components/static-generation-async-storage.external';
type DynamicAccess = {
/**
* If debugging, this will contain the stack trace of where the dynamic access

View File

@@ -1,17 +1,17 @@
export { renderToReadableStream, decodeReply, decodeAction, decodeFormState, } from 'react-server-dom-webpack/server.edge';
import AppRouter from 'next/dist/client/components/app-router';
import LayoutRouter from 'next/dist/client/components/layout-router';
import RenderFromTemplateContext from 'next/dist/client/components/render-from-template-context';
import { staticGenerationAsyncStorage } from 'next/dist/client/components/static-generation-async-storage.external';
import { requestAsyncStorage } from 'next/dist/client/components/request-async-storage.external';
import { actionAsyncStorage } from 'next/dist/client/components/action-async-storage.external';
import { ClientPageRoot } from 'next/dist/client/components/client-page';
import { createUntrackedSearchParams, createDynamicallyTrackedSearchParams } from 'next/dist/client/components/search-params';
import * as serverHooks from 'next/dist/client/components/hooks-server-context';
import { NotFoundBoundary } from 'next/dist/client/components/not-found-boundary';
import 'next/dist/client/components/error-boundary';
import { preloadStyle, preloadFont, preconnect } from 'next/dist/server/app-render/rsc/preloads';
import { Postpone } from 'next/dist/server/app-render/rsc/postpone';
import { taintObjectReference } from 'next/dist/server/app-render/rsc/taint';
import AppRouter from '../../client/components/app-router';
import LayoutRouter from '../../client/components/layout-router';
import RenderFromTemplateContext from '../../client/components/render-from-template-context';
import { staticGenerationAsyncStorage } from '../../client/components/static-generation-async-storage.external';
import { requestAsyncStorage } from '../../client/components/request-async-storage.external';
import { actionAsyncStorage } from '../../client/components/action-async-storage.external';
import { ClientPageRoot } from '../../client/components/client-page';
import { createUntrackedSearchParams, createDynamicallyTrackedSearchParams } from '../../client/components/search-params';
import * as serverHooks from '../../client/components/hooks-server-context';
import { NotFoundBoundary } from '../../client/components/not-found-boundary';
import '../../client/components/error-boundary';
import { preloadStyle, preloadFont, preconnect } from '../../server/app-render/rsc/preloads';
import { Postpone } from '../../server/app-render/rsc/postpone';
import { taintObjectReference } from '../../server/app-render/rsc/taint';
declare function patchFetch(): void;
export { AppRouter, LayoutRouter, RenderFromTemplateContext, staticGenerationAsyncStorage, requestAsyncStorage, actionAsyncStorage, createUntrackedSearchParams, createDynamicallyTrackedSearchParams, serverHooks, preloadStyle, preloadFont, preconnect, Postpone, taintObjectReference, ClientPageRoot, NotFoundBoundary, patchFetch, };

View File

@@ -1 +1 @@
export { Postpone } from 'next/dist/server/app-render/dynamic-rendering';
export { Postpone } from '../dynamic-rendering';

View File

@@ -1,15 +1,15 @@
/// <reference types="react" />
/// <reference types="node" />
import type { LoadComponentsReturnType } from 'next/dist/server/load-components';
import type { ServerRuntime, SizeLimit } from 'next/types';
import type { NextConfigComplete } from 'next/dist/server/config-shared';
import type { ClientReferenceManifest } from 'next/dist/build/webpack/plugins/flight-manifest-plugin';
import type { NextFontManifest } from 'next/dist/build/webpack/plugins/next-font-manifest-plugin';
import type { LoadComponentsReturnType } from '../load-components';
import type { ServerRuntime, SizeLimit } from '../../../types';
import type { NextConfigComplete } from '../../server/config-shared';
import type { ClientReferenceManifest } from '../../build/webpack/plugins/flight-manifest-plugin';
import type { NextFontManifest } from '../../build/webpack/plugins/next-font-manifest-plugin';
import type { ParsedUrlQuery } from 'querystring';
import type { AppPageModule } from 'next/dist/server/future/route-modules/app-page/module';
import type { SwrDelta } from 'next/dist/server/lib/revalidate';
import type { LoadingModuleData } from 'next/dist/shared/lib/app-router-context.shared-runtime';
import type { DeepReadonly } from 'next/dist/shared/lib/deep-readonly';
import type { AppPageModule } from '../future/route-modules/app-page/module';
import type { SwrDelta } from '../lib/revalidate';
import type { LoadingModuleData } from '../../shared/lib/app-router-context.shared-runtime';
import type { DeepReadonly } from '../../shared/lib/deep-readonly';
import s from 'next/dist/compiled/superstruct';
export type DynamicParamTypes = 'catchall' | 'catchall-intercepted' | 'optional-catchall' | 'dynamic' | 'dynamic-intercepted';
declare const dynamicParamTypesSchema: s.Struct<"d" | "c" | "ci" | "oc" | "di", {
@@ -91,7 +91,7 @@ export interface RenderOptsPartial {
crossOrigin?: '' | 'anonymous' | 'use-credentials' | undefined;
nextFontManifest?: DeepReadonly<NextFontManifest>;
isBot?: boolean;
incrementalCache?: import('next/dist/server/lib/incremental-cache').IncrementalCache;
incrementalCache?: import('../lib/incremental-cache').IncrementalCache;
isRevalidate?: boolean;
nextExport?: boolean;
nextConfigOutput?: 'standalone' | 'export';