nnanh3-msal-browser
Version:
Thư viện đã custom của azure masl có common kèm trong
20 lines (18 loc) • 693 B
JavaScript
/*! @azure/msal-common v4.5.1 2021-08-02 */
;
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
var CacheRecord = /** @class */ (function () {
function CacheRecord(accountEntity, idTokenEntity, accessTokenEntity, refreshTokenEntity, appMetadataEntity) {
this.account = accountEntity || null;
this.idToken = idTokenEntity || null;
this.accessToken = accessTokenEntity || null;
this.refreshToken = refreshTokenEntity || null;
this.appMetadata = appMetadataEntity || null;
}
return CacheRecord;
}());
export { CacheRecord };
//# sourceMappingURL=CacheRecord.js.map