dependencies messages, no curl on win32, fixes to min Version

This commit is contained in:
Karl Burtram
2019-10-27 21:43:30 -07:00
parent 872973c4d2
commit d83444ffeb
8 changed files with 159 additions and 81 deletions

View File

@@ -226,7 +226,6 @@ export const enum ToolStatus {
}
export interface ITool {
readonly status: ToolStatus;
readonly isInstalling: boolean;
readonly name: string;
readonly displayName: string;
@@ -234,10 +233,12 @@ export interface ITool {
readonly type: ToolType;
readonly homePage: string;
readonly displayStatus: string;
readonly dependencyMessages: string[];
readonly statusDescription: string | undefined;
readonly autoInstallSupported: boolean;
readonly autoInstallRequired: boolean;
readonly isNotInstalled: boolean;
readonly isInstalled: boolean;
readonly installationPath: string;
readonly needsInstallation: boolean;
readonly outputChannelName: string;