| 4 | export type InstallStep = 'lang' | 'options' | 'model' | 'progress' | 'theme' | 'uninstall'; |
| 5 | |
| 6 | export interface LaunchContext { |
| 7 | mode: 'install' | 'uninstall'; |
| 8 | uninstallPath: string | null; |
| 9 | appLanguage?: AppLanguage | null; |
| 10 | } |
| 11 | |
| 12 | export interface InstallPathValidation { |
| 13 | installPath: string; |
nothing calls this directly
no outgoing calls
no test coverage detected