Fix authentication sessions change event type

This commit is contained in:
Rachel Macfarlane
2020-07-28 11:30:06 -07:00
parent fc45905fb5
commit bb9c167ef2
3 changed files with 4 additions and 4 deletions

View File

@@ -211,7 +211,7 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
logout(providerId: string, sessionId: string): Thenable<void> {
return extHostAuthentication.logout(providerId, sessionId);
},
get onDidChangeSessions(): Event<vscode.AuthenticationProviderAuthenticationSessionsChangeEvent> {
get onDidChangeSessions(): Event<vscode.AuthenticationSessionsChangeEvent> {
return extHostAuthentication.onDidChangeSessions;
},
};