Estructura inicial del proyecto
This commit is contained in:
16
backend/node_modules/@azure/msal-common/src/account/CcsCredential.ts
generated
vendored
Normal file
16
backend/node_modules/@azure/msal-common/src/account/CcsCredential.ts
generated
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 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];
|
||||
Reference in New Issue
Block a user