UNPKG

@azure/msal-common

Version:
17 lines (14 loc) 480 B
/* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { AzureRegion } from "./AzureRegion.js"; /* * AzureRegionConfiguration * - preferredAzureRegion - Preferred azure region from the user * - environmentRegionFunc - Environment specific way of fetching the region from the environment */ export type AzureRegionConfiguration = { azureRegion?: AzureRegion; environmentRegion: string | undefined; };