(value: AngularBootstrap)
| 167 | * @returns True if the value is an Angular module (i.e., it has the `ɵmod` property), false otherwise. |
| 168 | */ |
| 169 | export function isNgModule(value: AngularBootstrap): value is Type<unknown> { |
| 170 | return 'ɵmod' in value; |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * Gracefully destroys the application in a macrotask, allowing pending promises to resolve |
no outgoing calls
no test coverage detected