Remove deprecated auth API proposals. Fixes #127144

This commit is contained in:
Tyler Leonhardt
2021-07-08 10:38:10 -07:00
parent a28d028d2d
commit ba01bbac9c
6 changed files with 0 additions and 89 deletions

View File

@@ -1281,7 +1281,6 @@ export interface ExtHostAuthenticationShape {
$createSession(id: string, scopes: string[]): Promise<modes.AuthenticationSession>;
$removeSession(id: string, sessionId: string): Promise<void>;
$onDidChangeAuthenticationSessions(id: string, label: string): Promise<void>;
$onDidChangeAuthenticationProviders(added: modes.AuthenticationProviderInformation[], removed: modes.AuthenticationProviderInformation[]): Promise<void>;
$setProviders(providers: modes.AuthenticationProviderInformation[]): Promise<void>;
}