mirror of
https://github.com/MeowLynxSea/Proksea.git
synced 2025-07-11 03:44:39 +00:00
12 lines
358 B
TypeScript
12 lines
358 B
TypeScript
/**
|
|
* App Metadata Cache Type
|
|
*/
|
|
export type AppMetadataEntity = {
|
|
/** clientId of the application */
|
|
clientId: string;
|
|
/** entity that issued the token, represented as a full host */
|
|
environment: string;
|
|
/** Family identifier, '1' represents Microsoft Family */
|
|
familyId?: string;
|
|
};
|
|
//# sourceMappingURL=AppMetadataEntity.d.ts.map
|