Edit gitignore file
This commit is contained in:
60
frontend/style/node_modules/next/dist/server/base-server.d.ts
generated
vendored
60
frontend/style/node_modules/next/dist/server/base-server.d.ts
generated
vendored
@@ -1,37 +1,37 @@
|
||||
/// <reference types="node" />
|
||||
/// <reference types="node" />
|
||||
/// <reference types="node" />
|
||||
import type { __ApiPreviewProps } from 'next/dist/server/api-utils';
|
||||
import type { FontManifest } from 'next/dist/server/font-utils';
|
||||
import type { LoadComponentsReturnType } from 'next/dist/server/load-components';
|
||||
import type { MiddlewareRouteMatch } from 'next/dist/shared/lib/router/utils/middleware-route-matcher';
|
||||
import type { Params } from 'next/dist/shared/lib/router/utils/route-matcher';
|
||||
import type { NextConfig, NextConfigComplete } from 'next/dist/server/config-shared';
|
||||
import type { NextParsedUrlQuery, NextUrlWithParsedQuery } from 'next/dist/server/request-meta';
|
||||
import type { __ApiPreviewProps } from './api-utils';
|
||||
import type { FontManifest } from './font-utils';
|
||||
import type { LoadComponentsReturnType } from './load-components';
|
||||
import type { MiddlewareRouteMatch } from '../shared/lib/router/utils/middleware-route-matcher';
|
||||
import type { Params } from '../shared/lib/router/utils/route-matcher';
|
||||
import type { NextConfig, NextConfigComplete } from './config-shared';
|
||||
import type { NextParsedUrlQuery, NextUrlWithParsedQuery } from './request-meta';
|
||||
import type { ParsedUrlQuery } from 'querystring';
|
||||
import type { RenderOptsPartial as PagesRenderOptsPartial } from 'next/dist/server/render';
|
||||
import type { RenderOptsPartial as AppRenderOptsPartial } from 'next/dist/server/app-render/types';
|
||||
import type { ResponseCacheBase } from 'next/dist/server/response-cache';
|
||||
import type { RenderOptsPartial as PagesRenderOptsPartial } from './render';
|
||||
import type { RenderOptsPartial as AppRenderOptsPartial } from './app-render/types';
|
||||
import type { ResponseCacheBase } from './response-cache';
|
||||
import type { UrlWithParsedQuery } from 'url';
|
||||
import type { PagesManifest } from 'next/dist/build/webpack/plugins/pages-manifest-plugin';
|
||||
import type { BaseNextRequest, BaseNextResponse } from 'next/dist/server/base-http';
|
||||
import type { ManifestRewriteRoute, ManifestRoute, PrerenderManifest } from 'next/dist/build';
|
||||
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 { PagesAPIRouteMatch } from 'next/dist/server/future/route-matches/pages-api-route-match';
|
||||
import type { PagesManifest } from '../build/webpack/plugins/pages-manifest-plugin';
|
||||
import type { BaseNextRequest, BaseNextResponse } from './base-http';
|
||||
import type { ManifestRewriteRoute, ManifestRoute, PrerenderManifest } from '../build';
|
||||
import type { ClientReferenceManifest } from '../build/webpack/plugins/flight-manifest-plugin';
|
||||
import type { NextFontManifest } from '../build/webpack/plugins/next-font-manifest-plugin';
|
||||
import type { PagesAPIRouteMatch } from './future/route-matches/pages-api-route-match';
|
||||
import type { Server as HTTPServer, IncomingMessage } from 'http';
|
||||
import type { MiddlewareMatcher } from 'next/dist/build/analysis/get-page-static-info';
|
||||
import { type Revalidate, type SwrDelta } from 'next/dist/server/lib/revalidate';
|
||||
import RenderResult from 'next/dist/server/render-result';
|
||||
import type { RouteMatcherManager } from 'next/dist/server/future/route-matcher-managers/route-matcher-manager';
|
||||
import { LocaleRouteNormalizer } from 'next/dist/server/future/normalizers/locale-route-normalizer';
|
||||
import { I18NProvider } from 'next/dist/server/future/helpers/i18n-provider';
|
||||
import { RSCPathnameNormalizer } from 'next/dist/server/future/normalizers/request/rsc';
|
||||
import { PostponedPathnameNormalizer } from 'next/dist/server/future/normalizers/request/postponed';
|
||||
import { ActionPathnameNormalizer } from 'next/dist/server/future/normalizers/request/action';
|
||||
import { PrefetchRSCPathnameNormalizer } from 'next/dist/server/future/normalizers/request/prefetch-rsc';
|
||||
import { NextDataPathnameNormalizer } from 'next/dist/server/future/normalizers/request/next-data';
|
||||
import type { DeepReadonly } from 'next/dist/shared/lib/deep-readonly';
|
||||
import type { MiddlewareMatcher } from '../build/analysis/get-page-static-info';
|
||||
import { type Revalidate, type SwrDelta } from './lib/revalidate';
|
||||
import RenderResult from './render-result';
|
||||
import type { RouteMatcherManager } from './future/route-matcher-managers/route-matcher-manager';
|
||||
import { LocaleRouteNormalizer } from './future/normalizers/locale-route-normalizer';
|
||||
import { I18NProvider } from './future/helpers/i18n-provider';
|
||||
import { RSCPathnameNormalizer } from './future/normalizers/request/rsc';
|
||||
import { PostponedPathnameNormalizer } from './future/normalizers/request/postponed';
|
||||
import { ActionPathnameNormalizer } from './future/normalizers/request/action';
|
||||
import { PrefetchRSCPathnameNormalizer } from './future/normalizers/request/prefetch-rsc';
|
||||
import { NextDataPathnameNormalizer } from './future/normalizers/request/next-data';
|
||||
import type { DeepReadonly } from '../shared/lib/deep-readonly';
|
||||
export type FindComponentsResult = {
|
||||
components: LoadComponentsReturnType;
|
||||
query: NextParsedUrlQuery;
|
||||
@@ -194,7 +194,7 @@ export default abstract class Server<ServerOptions extends Options = Options> {
|
||||
protected abstract getIncrementalCache(options: {
|
||||
requestHeaders: Record<string, undefined | string | string[]>;
|
||||
requestProtocol: 'http' | 'https';
|
||||
}): Promise<import('next/dist/server/lib/incremental-cache').IncrementalCache>;
|
||||
}): Promise<import('./lib/incremental-cache').IncrementalCache>;
|
||||
protected abstract getResponseCache(options: {
|
||||
dev: boolean;
|
||||
}): ResponseCacheBase;
|
||||
@@ -254,7 +254,7 @@ export default abstract class Server<ServerOptions extends Options = Options> {
|
||||
private renderImpl;
|
||||
protected getStaticPaths({ pathname, }: {
|
||||
pathname: string;
|
||||
requestHeaders: import('next/dist/server/lib/incremental-cache').IncrementalCache['requestHeaders'];
|
||||
requestHeaders: import('./lib/incremental-cache').IncrementalCache['requestHeaders'];
|
||||
page: string;
|
||||
isAppPath: boolean;
|
||||
}): Promise<{
|
||||
|
||||
Reference in New Issue
Block a user