@azure/msal-common
Version:
Microsoft Authentication Library for js
16 lines (14 loc) • 328 B
text/typescript
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* Authority types supported by MSAL.
*/
export const AuthorityType = {
Default: 0,
Adfs: 1,
Dsts: 2,
Ciam: 3,
} as const;
export type AuthorityType = (typeof AuthorityType)[keyof typeof AuthorityType];