16 lines
390 B
TypeScript
Executable file
16 lines
390 B
TypeScript
Executable file
/*
|
|
* 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];
|