support vsix for install-extension

This commit is contained in:
Martin Aeschlimann
2021-01-18 22:18:44 +01:00
parent 92083ed3e1
commit 847300e49a
2 changed files with 6 additions and 4 deletions

View File

@@ -42,8 +42,8 @@ export interface RunCommandPipeArgs {
export interface ExtensionManagementPipeArgs {
type: 'extensionManagement';
list?: { showVersions?: boolean, category?: string; };
install?: string[];
uninstall?: string[];
install?: (string | URI)[];
uninstall?: (string | URI)[];
force?: boolean;
}