12 lines
310 B
TypeScript
12 lines
310 B
TypeScript
|
export type AccountInfo = {
|
||
|
homeAccountId?: string;
|
||
|
environment: string;
|
||
|
tenantId?: string;
|
||
|
username: string;
|
||
|
localAccountId?: string;
|
||
|
name?: string;
|
||
|
idToken?: string;
|
||
|
platformBrokerId?: string;
|
||
|
idTokenClaims?: object;
|
||
|
};
|
||
|
//# sourceMappingURL=AccountInfo.d.ts.map
|