mirror of
https://github.com/MeowLynxSea/Proksea.git
synced 2025-07-10 19:34:41 +00:00
10 lines
340 B
TypeScript
10 lines
340 B
TypeScript
export type CcsCredential = {
|
|
credential: string;
|
|
type: CcsCredentialType;
|
|
};
|
|
export declare const CcsCredentialType: {
|
|
readonly HOME_ACCOUNT_ID: "home_account_id";
|
|
readonly UPN: "UPN";
|
|
};
|
|
export type CcsCredentialType = (typeof CcsCredentialType)[keyof typeof CcsCredentialType];
|
|
//# sourceMappingURL=CcsCredential.d.ts.map
|