msal
Version:
Microsoft Authentication Library for js
21 lines • 692 B
JavaScript
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.AccessTokenValue = void 0;
/**
* @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;
}());
exports.AccessTokenValue = AccessTokenValue;
//# sourceMappingURL=AccessTokenValue.js.map
;