diff --git a/src/vs/workbench/api/common/extHost.api.impl.ts b/src/vs/workbench/api/common/extHost.api.impl.ts index d7acec22c23..59926ad7adf 100644 --- a/src/vs/workbench/api/common/extHost.api.impl.ts +++ b/src/vs/workbench/api/common/extHost.api.impl.ts @@ -199,7 +199,7 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I hasSessions(providerId: string, scopes: string[]): Thenable { return extHostAuthentication.hasSessions(providerId, scopes); }, - getSession(providerId: string, scopes: string[], options: vscode.authentication.GetSessionOptions): Thenable { + getSession(providerId: string, scopes: string[], options: vscode.AuthenticationGetSessionOptions): Thenable { return extHostAuthentication.getSession(extension, providerId, scopes, options); }, getSessions(providerId: string, scopes: string[]): Thenable {