($injector: IInjectorService)
| 83 | } |
| 84 | |
| 85 | export function getDowngradedModuleCount($injector: IInjectorService): number { |
| 86 | return $injector.has(DOWNGRADED_MODULE_COUNT_KEY) |
| 87 | ? $injector.get(DOWNGRADED_MODULE_COUNT_KEY) |
| 88 | : 0; |
| 89 | } |
| 90 | |
| 91 | export function getUpgradeAppType($injector: IInjectorService): UpgradeAppType { |
| 92 | return $injector.has(UPGRADE_APP_TYPE_KEY) |
no test coverage detected
searching dependent graphs…