Function
isApplicationBootstrapConfig
(
config: ApplicationBootstrapConfig | ModuleBootstrapConfig<unknown>,
)
Source from the content-addressed store, hash-verified
| 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>, |
Tested by
no test coverage detected