mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
fix how failed/errored installation workflow (#8842)
* fix how failed/errored installation workflow * address PR comments * renaming UiControls method
This commit is contained in:
@@ -241,7 +241,6 @@ export const enum ToolStatus {
|
||||
}
|
||||
|
||||
export interface ITool {
|
||||
readonly isInstalling: boolean;
|
||||
readonly name: string;
|
||||
readonly displayName: string;
|
||||
readonly description: string;
|
||||
@@ -252,15 +251,14 @@ export interface ITool {
|
||||
readonly statusDescription?: string;
|
||||
readonly autoInstallSupported: boolean;
|
||||
readonly autoInstallNeeded: boolean;
|
||||
readonly isNotInstalled: boolean;
|
||||
readonly isInstalled: boolean;
|
||||
readonly status: ToolStatus;
|
||||
readonly installationPathOrAdditionalInformation?: string;
|
||||
readonly outputChannelName: string;
|
||||
readonly fullVersion?: string;
|
||||
readonly onDidUpdateData: vscode.Event<ITool>;
|
||||
|
||||
showOutputChannel(preserveFocus?: boolean): void;
|
||||
loadInformation(): Promise<void>;
|
||||
finishInitialization(): Promise<void>;
|
||||
install(): Promise<void>;
|
||||
isSameOrNewerThan(version: string): boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user