@azure/msal-common
Version:
Microsoft Authentication Library for js
17 lines (14 loc) • 480 B
text/typescript
/*
* 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;
};