Edit gitignore file
This commit is contained in:
38
frontend/style/node_modules/next/dist/server/dev/next-dev-server.d.ts
generated
vendored
38
frontend/style/node_modules/next/dist/server/dev/next-dev-server.d.ts
generated
vendored
@@ -1,23 +1,23 @@
|
||||
/// <reference types="node" />
|
||||
/// <reference types="node" />
|
||||
import type { FindComponentsResult } from 'next/dist/server/next-server';
|
||||
import type { LoadComponentsReturnType } from 'next/dist/server/load-components';
|
||||
import type { Options as ServerOptions } from 'next/dist/server/next-server';
|
||||
import type { Params } from 'next/dist/shared/lib/router/utils/route-matcher';
|
||||
import type { ParsedUrl } from 'next/dist/shared/lib/router/utils/parse-url';
|
||||
import type { FindComponentsResult } from '../next-server';
|
||||
import type { LoadComponentsReturnType } from '../load-components';
|
||||
import type { Options as ServerOptions } from '../next-server';
|
||||
import type { Params } from '../../shared/lib/router/utils/route-matcher';
|
||||
import type { ParsedUrl } from '../../shared/lib/router/utils/parse-url';
|
||||
import type { ParsedUrlQuery } from 'querystring';
|
||||
import type { UrlWithParsedQuery } from 'url';
|
||||
import type { BaseNextRequest, BaseNextResponse } from 'next/dist/server/base-http';
|
||||
import type { MiddlewareRoutingItem } from 'next/dist/server/base-server';
|
||||
import type { RouteDefinition } from 'next/dist/server/future/route-definitions/route-definition';
|
||||
import type { RouteMatcherManager } from 'next/dist/server/future/route-matcher-managers/route-matcher-manager';
|
||||
import type { NextParsedUrlQuery, NextUrlWithParsedQuery } from 'next/dist/server/request-meta';
|
||||
import type { DevBundlerService } from 'next/dist/server/lib/dev-bundler-service';
|
||||
import type { IncrementalCache } from 'next/dist/server/lib/incremental-cache';
|
||||
import type { NodeNextResponse, NodeNextRequest } from 'next/dist/server/base-http/node';
|
||||
import type { PagesManifest } from 'next/dist/build/webpack/plugins/pages-manifest-plugin';
|
||||
import Server from 'next/dist/server/next-server';
|
||||
import { type Span } from 'next/dist/trace';
|
||||
import type { BaseNextRequest, BaseNextResponse } from '../base-http';
|
||||
import type { MiddlewareRoutingItem } from '../base-server';
|
||||
import type { RouteDefinition } from '../future/route-definitions/route-definition';
|
||||
import type { RouteMatcherManager } from '../future/route-matcher-managers/route-matcher-manager';
|
||||
import type { NextParsedUrlQuery, NextUrlWithParsedQuery } from '../request-meta';
|
||||
import type { DevBundlerService } from '../lib/dev-bundler-service';
|
||||
import type { IncrementalCache } from '../lib/incremental-cache';
|
||||
import type { NodeNextResponse, NodeNextRequest } from '../base-http/node';
|
||||
import type { PagesManifest } from '../../build/webpack/plugins/pages-manifest-plugin';
|
||||
import Server from '../next-server';
|
||||
import { type Span } from '../../trace';
|
||||
export interface Options extends ServerOptions {
|
||||
/**
|
||||
* Tells of Next.js is running from the `next dev` command
|
||||
@@ -51,7 +51,7 @@ export default class DevServer extends Server {
|
||||
protected staticPathsWorker?: {
|
||||
[key: string]: any;
|
||||
} & {
|
||||
loadStaticPaths: typeof import('next/dist/server/dev/static-paths-worker').loadStaticPaths;
|
||||
loadStaticPaths: typeof import('./static-paths-worker').loadStaticPaths;
|
||||
};
|
||||
private getStaticPathsWorker;
|
||||
constructor(options: Options);
|
||||
@@ -66,7 +66,7 @@ export default class DevServer extends Server {
|
||||
parsedUrl: ParsedUrl;
|
||||
parsed: UrlWithParsedQuery;
|
||||
middlewareList: MiddlewareRoutingItem[];
|
||||
}): Promise<import("next/dist/server/web/types").FetchEventResult | {
|
||||
}): Promise<import("../web/types").FetchEventResult | {
|
||||
finished: boolean;
|
||||
}>;
|
||||
runEdgeFunction(params: {
|
||||
@@ -77,7 +77,7 @@ export default class DevServer extends Server {
|
||||
page: string;
|
||||
appPaths: string[] | null;
|
||||
isAppPath: boolean;
|
||||
}): Promise<import("next/dist/server/web/types").FetchEventResult | null>;
|
||||
}): Promise<import("../web/types").FetchEventResult | null>;
|
||||
handleRequest(req: BaseNextRequest, res: BaseNextResponse, parsedUrl?: NextUrlWithParsedQuery): Promise<void>;
|
||||
run(req: NodeNextRequest, res: NodeNextResponse, parsedUrl: UrlWithParsedQuery): Promise<void>;
|
||||
protected logErrorWithOriginalStack(err?: unknown, type?: 'unhandledRejection' | 'uncaughtException' | 'warning' | 'app-dir'): Promise<void>;
|
||||
|
||||
Reference in New Issue
Block a user