use URI for VSIX paths

This commit is contained in:
Martin Aeschlimann
2021-01-18 11:16:53 +01:00
parent c198925570
commit 22e02e0080
4 changed files with 25 additions and 23 deletions

View File

@@ -20,7 +20,7 @@ CommandsRegistry.registerCommand('_cli.openExternal', function (accessor: Servic
interface ManageExtensionsArgs {
list?: { showVersions?: boolean, category?: string; };
install?: string[];
install?: (string | URI)[];
uninstall?: string[];
force?: boolean;
}