()
| 716 | } |
| 717 | |
| 718 | public getApplyRequestProvidersMap(): { [type: string]: Function } { |
| 719 | return { |
| 720 | [APP_INTERCEPTOR]: (interceptor: InstanceWrapper<NestInterceptor>) => |
| 721 | this.applicationConfig.addGlobalRequestInterceptor(interceptor), |
| 722 | [APP_PIPE]: (pipe: InstanceWrapper<PipeTransform>) => |
| 723 | this.applicationConfig.addGlobalRequestPipe(pipe), |
| 724 | [APP_GUARD]: (guard: InstanceWrapper<CanActivate>) => |
| 725 | this.applicationConfig.addGlobalRequestGuard(guard), |
| 726 | [APP_FILTER]: (filter: InstanceWrapper<ExceptionFilter>) => |
| 727 | this.applicationConfig.addGlobalRequestFilter(filter), |
| 728 | }; |
| 729 | } |
| 730 | |
| 731 | public isDynamicModule( |
| 732 | module: Type<any> | DynamicModule, |
no test coverage detected