UNPKG

@azure/msal-common

Version:
16 lines (14 loc) 328 B
/* * 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];