Add account context menu, #90385

This commit is contained in:
Rachel Macfarlane
2020-03-20 09:50:48 -07:00
parent aba05ec2b4
commit 2b86488f03
15 changed files with 439 additions and 76 deletions

View File

@@ -199,7 +199,7 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
login(providerId: string, scopes: string[]): Thenable<vscode.AuthenticationSession> {
return extHostAuthentication.login(extension, providerId, scopes);
},
get onDidChangeSessions(): Event<string[]> {
get onDidChangeSessions(): Event<{ [providerId: string]: vscode.AuthenticationSessionsChangeEvent }> {
return extHostAuthentication.onDidChangeSessions;
},
};