Path: blob/main/src/vscode-dts/vscode.proposed.authProviderSpecific.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' {67// https://github.com/microsoft/vscode/issues/25164889export interface AuthenticationProviderSessionOptions {10/**11* Allows the authentication provider to take in additional parameters.12* It is up to the provider to define what these parameters are and handle them.13* This is useful for passing in additional information that is specific to the provider14* and not part of the standard authentication flow.15*/16[key: string]: any;17}1819// TODO: Implement this interface if needed via an extension20// export interface AuthenticationGetSessionOptions {21// /**22// * Allows the authentication provider to take in additional parameters.23// * It is up to the provider to define what these parameters are and handle them.24// * This is useful for passing in additional information that is specific to the provider25// * and not part of the standard authentication flow.26// */27// [key: string]: any;28// }29}303132