msal-iframe-ok
Version:
Fork to allow silent renewal in iFrame of Microsoft Authentication Library for js
20 lines (19 loc) • 378 B
TypeScript
/**
* @hidden
*/
export declare class IdToken {
issuer: string;
objectId: string;
subject: string;
tenantId: string;
version: string;
preferredName: string;
name: string;
homeObjectId: string;
nonce: string;
expiration: string;
rawIdToken: string;
decodedIdToken: Object;
sid: string;
constructor(rawIdToken: string);
}