mirror of
https://github.com/MeowLynxSea/Proksea.git
synced 2025-07-11 03:44:39 +00:00
9 lines
281 B
TypeScript
9 lines
281 B
TypeScript
import { CredentialEntity } from "./CredentialEntity";
|
|
/**
|
|
* Id Token Cache Type
|
|
*/
|
|
export type IdTokenEntity = CredentialEntity & {
|
|
/** Full tenant or organizational identifier that the account belongs to */
|
|
realm: string;
|
|
};
|
|
//# sourceMappingURL=IdTokenEntity.d.ts.map
|