msal
Version:
Microsoft Authentication Library for js
16 lines • 552 B
JavaScript
// 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