@azure/msal-common
Version:
Microsoft Authentication Library for js
17 lines (14 loc) • 390 B
text/typescript
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
export type CcsCredential = {
credential: string;
type: CcsCredentialType;
};
export const CcsCredentialType = {
HOME_ACCOUNT_ID: "home_account_id",
UPN: "UPN",
} as const;
export type CcsCredentialType =
(typeof CcsCredentialType)[keyof typeof CcsCredentialType];