Version 1.0.2 mit node_modules Verzeichnis

This commit is contained in:
ISA
2024-10-02 07:58:24 +02:00
parent f353a06b1b
commit 62b6e55a0a
68228 changed files with 4548477 additions and 651 deletions

View File

@@ -0,0 +1,19 @@
/// <reference types="node" />
/// <reference types="node" />
import type { IncomingMessage } from 'http';
import type { NextParsedUrlQuery } from '../../../../server/request-meta';
import type { Params } from './route-matcher';
import type { RouteHas } from '../../../../lib/load-custom-routes';
import type { BaseNextRequest } from '../../../../server/base-http';
export declare function matchHas(req: BaseNextRequest | IncomingMessage, query: Params, has?: RouteHas[], missing?: RouteHas[]): false | Params;
export declare function compileNonPath(value: string, params: Params): string;
export declare function prepareDestination(args: {
appendParamsToQuery: boolean;
destination: string;
params: Params;
query: NextParsedUrlQuery;
}): {
newUrl: string;
destQuery: import("querystring").ParsedUrlQuery;
parsedDestination: import("./parse-url").ParsedUrl;
};