@nestjs/common/interfaces#HttpServer TypeScript Examples

The following examples show how to use @nestjs/common/interfaces#HttpServer. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: utils.d.ts    From nest-jaeger with MIT License 6 votes vote down vote up
export declare function isRouteExcluded(req: Record<string, any>, excludedRoutes: RouteInfoRegex[], httpAdapter: HttpServer): boolean;
Example #2
Source File: utils.d.ts    From nest-jaeger with MIT License 6 votes vote down vote up
filterMiddleware: <T extends Function | Type<any> = any>(middleware: T[], excludedRoutes: RouteInfo[], httpAdapter: HttpServer) => Type<any>[]
Example #3
Source File: utils.d.ts    From nest-jaeger with MIT License 6 votes vote down vote up
mapToClass: <T extends Function | Type<any>>(middleware: T, excludedRoutes: RouteInfoRegex[], httpAdapter: HttpServer) => Type<any>
Example #4
Source File: builder.d.ts    From nest-jaeger with MIT License 5 votes vote down vote up
getHttpAdapter(): HttpServer;
Example #5
Source File: builder.d.ts    From nest-jaeger with MIT License 5 votes vote down vote up
constructor(routesMapper: RoutesMapper, httpAdapter: HttpServer);
Example #6
Source File: routes-resolver.d.ts    From nest-jaeger with MIT License 5 votes vote down vote up
resolve<T extends HttpServer>(applicationRef: T, basePath: string): void;
Example #7
Source File: routes-resolver.d.ts    From nest-jaeger with MIT License 5 votes vote down vote up
registerRouters(routes: Map<string, InstanceWrapper<Controller>>, moduleName: string, basePath: string, applicationRef: HttpServer): void;