Edit gitignore file
This commit is contained in:
14
frontend/style/node_modules/next/dist/server/lib/router-utils/filesystem.d.ts
generated
vendored
14
frontend/style/node_modules/next/dist/server/lib/router-utils/filesystem.d.ts
generated
vendored
@@ -1,8 +1,8 @@
|
||||
import type { ManifestRoute, PrerenderManifest } from 'next/dist/build';
|
||||
import type { NextConfigComplete } from 'next/dist/server/config-shared';
|
||||
import type { PatchMatcher } from 'next/dist/shared/lib/router/utils/path-match';
|
||||
import type { MiddlewareRouteMatch } from 'next/dist/shared/lib/router/utils/middleware-route-matcher';
|
||||
import { type Rewrite } from 'next/dist/lib/load-custom-routes';
|
||||
import type { ManifestRoute, PrerenderManifest } from '../../../build';
|
||||
import type { NextConfigComplete } from '../../config-shared';
|
||||
import type { PatchMatcher } from '../../../shared/lib/router/utils/path-match';
|
||||
import type { MiddlewareRouteMatch } from '../../../shared/lib/router/utils/middleware-route-matcher';
|
||||
import { type Rewrite } from '../../../lib/load-custom-routes';
|
||||
export type FsOutput = {
|
||||
type: 'appFile' | 'pageFile' | 'nextImage' | 'publicFolder' | 'nextStaticFolder' | 'legacyStaticFolder' | 'devVirtualFsItem';
|
||||
itemPath: string;
|
||||
@@ -31,7 +31,7 @@ export declare function setupFsCheck(opts: {
|
||||
timestamp: number;
|
||||
}>) => void) => void;
|
||||
}): Promise<{
|
||||
headers: (import("next/dist/lib/load-custom-routes").Header & {
|
||||
headers: (import("../../../lib/load-custom-routes").Header & {
|
||||
match: PatchMatcher;
|
||||
check?: boolean | undefined;
|
||||
})[];
|
||||
@@ -49,7 +49,7 @@ export declare function setupFsCheck(opts: {
|
||||
check?: boolean | undefined;
|
||||
})[];
|
||||
};
|
||||
redirects: (import("next/dist/lib/load-custom-routes").Redirect & {
|
||||
redirects: (import("../../../lib/load-custom-routes").Redirect & {
|
||||
match: PatchMatcher;
|
||||
check?: boolean | undefined;
|
||||
})[];
|
||||
|
||||
20
frontend/style/node_modules/next/dist/server/lib/router-utils/setup-dev-bundler.d.ts
generated
vendored
20
frontend/style/node_modules/next/dist/server/lib/router-utils/setup-dev-bundler.d.ts
generated
vendored
@@ -1,13 +1,13 @@
|
||||
/// <reference types="node" />
|
||||
import type { NextConfigComplete } from 'next/dist/server/config-shared';
|
||||
import type { UnwrapPromise } from 'next/dist/lib/coalesced-function';
|
||||
import type { MiddlewareMatcher } from 'next/dist/build/analysis/get-page-static-info';
|
||||
import type { MiddlewareRouteMatch } from 'next/dist/shared/lib/router/utils/middleware-route-matcher';
|
||||
import type { PropagateToWorkersField } from 'next/dist/server/lib/router-utils/types';
|
||||
import type { NextJsHotReloaderInterface } from 'next/dist/server/dev/hot-reloader-types';
|
||||
import type { Telemetry } from 'next/dist/telemetry/storage';
|
||||
import type { NextConfigComplete } from '../../config-shared';
|
||||
import type { UnwrapPromise } from '../../../lib/coalesced-function';
|
||||
import type { MiddlewareMatcher } from '../../../build/analysis/get-page-static-info';
|
||||
import type { MiddlewareRouteMatch } from '../../../shared/lib/router/utils/middleware-route-matcher';
|
||||
import type { PropagateToWorkersField } from './types';
|
||||
import type { NextJsHotReloaderInterface } from '../../dev/hot-reloader-types';
|
||||
import type { Telemetry } from '../../../telemetry/storage';
|
||||
import type { IncomingMessage, ServerResponse } from 'http';
|
||||
import type { LazyRenderServerInstance } from 'next/dist/server/lib/router-server';
|
||||
import type { LazyRenderServerInstance } from '../router-server';
|
||||
export type SetupOpts = {
|
||||
renderServer: LazyRenderServerInstance;
|
||||
dir: string;
|
||||
@@ -16,7 +16,7 @@ export type SetupOpts = {
|
||||
pagesDir?: string;
|
||||
telemetry: Telemetry;
|
||||
isCustomServer?: boolean;
|
||||
fsChecker: UnwrapPromise<ReturnType<typeof import('next/dist/server/lib/router-utils/filesystem').setupFsCheck>>;
|
||||
fsChecker: UnwrapPromise<ReturnType<typeof import('./filesystem').setupFsCheck>>;
|
||||
nextConfig: NextConfigComplete;
|
||||
port: number;
|
||||
};
|
||||
@@ -30,7 +30,7 @@ export type ServerFields = {
|
||||
matchers?: MiddlewareMatcher[];
|
||||
} | undefined;
|
||||
hasAppNotFound?: boolean;
|
||||
interceptionRoutes?: ReturnType<typeof import('next/dist/server/lib/router-utils/filesystem').buildCustomRoute>[];
|
||||
interceptionRoutes?: ReturnType<typeof import('./filesystem').buildCustomRoute>[];
|
||||
};
|
||||
export declare function propagateServerField(opts: SetupOpts, field: PropagateToWorkersField, args: any): Promise<void>;
|
||||
export declare function setupDevBundler(opts: SetupOpts): Promise<{
|
||||
|
||||
Reference in New Issue
Block a user