(modules: any[], scope: Type<any>[])
| 199 | } |
| 200 | |
| 201 | public async addDynamicModules(modules: any[], scope: Type<any>[]) { |
| 202 | if (!modules) { |
| 203 | return; |
| 204 | } |
| 205 | await Promise.all(modules.map(module => this.addModule(module, scope))); |
| 206 | } |
| 207 | |
| 208 | public isGlobalModule( |
| 209 | metatype: Type<any>, |
no test coverage detected