Skip to content

Commit

Permalink
Remove deprecated parts of proposed auth provider API
Browse files Browse the repository at this point in the history
  • Loading branch information
Rachel Macfarlane committed Jan 4, 2021
1 parent 13317a9 commit 0f9ee98
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions src/vs/vscode.proposed.d.ts
Expand Up @@ -135,32 +135,12 @@ declare module 'vscode' {
*/
export function registerAuthenticationProvider(provider: AuthenticationProvider): Disposable;

/**
* @deprecated - getSession should now trigger extension activation.
* Fires with the provider id that was registered or unregistered.
*/
export const onDidChangeAuthenticationProviders: Event<AuthenticationProvidersChangeEvent>;

/**
* @deprecated
* The ids of the currently registered authentication providers.
* @returns An array of the ids of authentication providers that are currently registered.
*/
export function getProviderIds(): Thenable<ReadonlyArray<string>>;

/**
* @deprecated
* An array of the ids of authentication providers that are currently registered.
*/
export const providerIds: ReadonlyArray<string>;

/**
* An array of the information of authentication providers that are currently registered.
*/
export const providers: ReadonlyArray<AuthenticationProviderInformation>;

/**
* @deprecated
* Logout of a specific session.
* @param providerId The id of the provider to use
* @param sessionId The session id to remove
Expand Down

0 comments on commit 0f9ee98

Please sign in to comment.