1/*--------------------------------------------------------------------------------------------- 2 * Copyright (c) Microsoft Corporation. All rights reserved. 3 * Licensed under the MIT License. See License.txt in the project root for license information. 4 *--------------------------------------------------------------------------------------------*/ 5 6declare module 'vscode' { 7 8 // https://github.com/microsoft/vscode/issues/206587 9 10 export interface AuthenticationGetSessionPresentationOptions { 11 /** 12 * An optional Uri to open in the browser to learn more about this authentication request. 13 */ 14 learnMore?: Uri; 15 } 16} 17 18