import { Event } from '../../../util/vs/base/common/event'; export interface IDomainChangeEvent { capiUrlChanged: boolean; telemetryUrlChanged: boolean; dotcomUrlChanged: boolean; proxyUrlChanged: boolean; } /** * Very simple service used for dynamically setting the domains we use for API calls * This allows better testing, SKU isolation, and Proxima */ export interface IDomainService { readonly _serviceBrand: undefined; readonly onDidChangeDomains: Event; } export declare const IDomainService: import("../../../util/common/services").ServiceIdentifier; //# sourceMappingURL=domainService.d.ts.map