( config: ApplicationBootstrapConfig | ModuleBootstrapConfig<unknown>, )
| 67 | } |
| 68 | |
| 69 | function isApplicationBootstrapConfig( |
| 70 | config: ApplicationBootstrapConfig | ModuleBootstrapConfig<unknown>, |
| 71 | ): config is ApplicationBootstrapConfig { |
| 72 | return !(config as ModuleBootstrapConfig<unknown>).moduleRef; |
| 73 | } |
| 74 | |
| 75 | export function bootstrap<M>( |
| 76 | moduleBootstrapConfig: ModuleBootstrapConfig<M>, |
no outgoing calls
no test coverage detected
searching dependent graphs…