(
imports = [],
initService: Type<InitService> = LocalInitService,
)
| 5 | @Module({}) |
| 6 | export class InitModule { |
| 7 | static register( |
| 8 | imports = [], |
| 9 | initService: Type<InitService> = LocalInitService, |
| 10 | ): DynamicModule { |
| 11 | return { |
| 12 | module: InitModule, |
| 13 | imports, |
| 14 | providers: [ |
| 15 | { |
| 16 | provide: InitService, |
| 17 | useClass: initService, |
| 18 | }, |
| 19 | ], |
| 20 | }; |
| 21 | } |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected