nnanh3-msal-browser
Version:
Thư viện đã custom của azure masl có common kèm trong
25 lines • 547 B
TypeScript
/**
* Type which describes Id Token claims known by MSAL.
*/
export declare type TokenClaims = {
iss?: string;
iat?: number;
oid?: string;
sub?: string;
tid?: string;
ver?: string;
upn?: string;
preferred_username?: string;
emails?: string[];
name?: string;
nonce?: string;
exp?: number;
home_oid?: string;
sid?: string;
cloud_instance_host_name?: string;
cnf?: {
kid: string;
};
x5c_ca?: string;
};
//# sourceMappingURL=TokenClaims.d.ts.map