Initial commit - Event Planner application
This commit is contained in:
16
node_modules/@nestjs/core/router/legacy-route-converter.d.ts
generated
vendored
Normal file
16
node_modules/@nestjs/core/router/legacy-route-converter.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
export declare class LegacyRouteConverter {
|
||||
private static readonly logger;
|
||||
/**
|
||||
* Convert legacy routes to the new format (syntax).
|
||||
* path-to-regexp used by Express>=v5 and @fastify/middie>=v9 no longer support unnamed wildcards.
|
||||
* This method attempts to convert the old syntax to the new one, and logs an error if it fails.
|
||||
* @param route The route to convert.
|
||||
* @param options Options object.
|
||||
* @returns The converted route, or the original route if it cannot be converted.
|
||||
*/
|
||||
static tryConvert(route: string, options?: {
|
||||
logs?: boolean;
|
||||
}): string;
|
||||
static printError(route: string): void;
|
||||
static printWarning(route: string): void;
|
||||
}
|
||||
Reference in New Issue
Block a user