UNPKG

msal-iframe-ok

Version:

Fork to allow silent renewal in iFrame of Microsoft Authentication Library for js

16 lines 537 B
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. /** * @hidden */ var AccessTokenValue = /** @class */ (function () { function AccessTokenValue(accessToken, idToken, expiresIn, homeAccountIdentifier) { this.accessToken = accessToken; this.idToken = idToken; this.expiresIn = expiresIn; this.homeAccountIdentifier = homeAccountIdentifier; } return AccessTokenValue; }()); export { AccessTokenValue }; //# sourceMappingURL=AccessTokenValue.js.map