/*! @azure/msal-common v14.4.0 2023-11-07 */ 'use strict'; /* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * This class instance helps track the memory changes facilitating * decisions to read from and write to the persistent cache */ class TokenCacheContext { constructor(tokenCache, hasChanged) { this.cache = tokenCache; this.hasChanged = hasChanged; } /** * boolean which indicates the changes in cache */ get cacheHasChanged() { return this.hasChanged; } /** * function to retrieve the token cache */ get tokenCache() { return this.cache; } } export { TokenCacheContext }; //# sourceMappingURL=TokenCacheContext.mjs.map