/*! * Copyright (C) Microsoft Corporation. All rights reserved. */ import type { Region } from '@microsoft/power-apps-common/services'; export type ServiceRegion = Exclude; export type ServiceConfig = { endpoint: string; authResource: string; }; export type ServiceDefinition = { endpoint: { [key in ServiceRegion]: string; }; authResource: { [key in ServiceRegion]: string; }; }; //# sourceMappingURL=Services.types.d.ts.map