/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the Source EULA. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { createDecorator } from 'vs/platform/instantiation/common/instantiation'; import { Event } from 'vs/base/common/event'; import * as azdata from 'azdata'; export const IAccountPickerService = createDecorator('AccountPickerService'); export interface IAccountPickerService { _serviceBrand: any; renderAccountPicker(container: HTMLElement): void; addAccountCompleteEvent: Event; addAccountErrorEvent: Event; addAccountStartEvent: Event; onAccountSelectionChangeEvent: Event; selectedAccount: azdata.Account | undefined; }