Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandeep Somavarapu <sasomava@microsoft.com>2021-09-10 17:06:37 +0300
committerSandeep Somavarapu <sasomava@microsoft.com>2021-09-10 17:06:37 +0300
commite3586ecf1e6d6581b1c594915a8047bb50e9b3cd (patch)
treefbdc6cd2c5d9989aeacb566e2203d467cb5bfa64 /src/vs/workbench/contrib/extensions/common
parent3d0c27ca8621df74103bbb42fe9ec362234a26ce (diff)
support alpine linux
Diffstat (limited to 'src/vs/workbench/contrib/extensions/common')
-rw-r--r--src/vs/workbench/contrib/extensions/common/extensions.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vs/workbench/contrib/extensions/common/extensions.ts b/src/vs/workbench/contrib/extensions/common/extensions.ts
index 6b906debfd7..f71023e2f98 100644
--- a/src/vs/workbench/contrib/extensions/common/extensions.ts
+++ b/src/vs/workbench/contrib/extensions/common/extensions.ts
@@ -88,7 +88,7 @@ export interface IExtensionsWorkbenchService {
queryLocal(server?: IExtensionManagementServer): Promise<IExtension[]>;
queryGallery(token: CancellationToken): Promise<IPager<IExtension>>;
queryGallery(options: IQueryOptions, token: CancellationToken): Promise<IPager<IExtension>>;
- canInstall(extension: IExtension): boolean;
+ canInstall(extension: IExtension): Promise<boolean>;
install(vsix: URI): Promise<IExtension>;
install(extension: IExtension, installOptins?: InstallOptions): Promise<IExtension>;
uninstall(extension: IExtension): Promise<void>;