UNPKG

nnanh3-msal-browser

Version:

Thư viện đã custom của azure masl có common kèm trong

20 lines (18 loc) 693 B
/*! @azure/msal-common v4.5.1 2021-08-02 */ 'use strict'; /* * 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