diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index b73cbe2cfb5b4..b6d7f83f86c8e 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -13806,7 +13806,7 @@ declare module 'vscode' { * to the editor that implement GitHub and Microsoft authentication: their providerId's are 'github' and 'microsoft'. * @param providerId The id of the provider to use * @param scopes A list of scopes representing the permissions requested. These are dependent on the authentication provider - * @param options The {@link GetSessionOptions} to use + * @param options The {@link AuthenticationGetSessionOptions} to use * @returns A thenable that resolves to an authentication session */ export function getSession(providerId: string, scopes: readonly string[], options: AuthenticationGetSessionOptions & { createIfNone: true }): Thenable; @@ -13821,7 +13821,7 @@ declare module 'vscode' { * to the editor that implement GitHub and Microsoft authentication: their providerId's are 'github' and 'microsoft'. * @param providerId The id of the provider to use * @param scopes A list of scopes representing the permissions requested. These are dependent on the authentication provider - * @param options The {@link GetSessionOptions} to use + * @param options The {@link AuthenticationGetSessionOptions} to use * @returns A thenable that resolves to an authentication session if available, or undefined if there are no sessions */ export function getSession(providerId: string, scopes: readonly string[], options?: AuthenticationGetSessionOptions): Thenable;