Add authentication contribution point, #103507

This commit is contained in:
Rachel Macfarlane
2020-08-27 11:50:51 -07:00
parent 3bd7c6981e
commit 650197b991
8 changed files with 143 additions and 6 deletions

View File

@@ -1055,6 +1055,7 @@ export interface ExtHostAuthenticationShape {
$logout(id: string, sessionId: string): Promise<void>;
$onDidChangeAuthenticationSessions(id: string, label: string, event: modes.AuthenticationSessionsChangeEvent): Promise<void>;
$onDidChangeAuthenticationProviders(added: modes.AuthenticationProviderInformation[], removed: modes.AuthenticationProviderInformation[]): Promise<void>;
$setProviders(providers: modes.AuthenticationProviderInformation[]): Promise<void>;
}
export interface ExtHostSearchShape {