Path: blob/main/src/vscode-dts/vscode.proposed.authIssuers.d.ts
3290 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45declare module 'vscode' {6export interface AuthenticationProviderOptions {7/**8* When specified, this provider will be associated with these authorization servers. They can still contain globs9* just like their extension contribution counterparts.10*/11readonly supportedAuthorizationServers?: Uri[];12}1314export interface AuthenticationProviderSessionOptions {15/**16* When specified, the authentication provider will use the provided authorization server URL to17* authenticate the user. This is only used when a provider has `supportsAuthorizationServers` set18*/19authorizationServer?: Uri;20}2122export interface AuthenticationGetSessionOptions {23/**24* When specified, the authentication provider will use the provided authorization server URL to25* authenticate the user. This is only used when a provider has `supportsAuthorizationServers` set26*/27authorizationServer?: Uri;28}29}303132