/** * Copyright (c) Microsoft Corporation. All rights reserved. */ /** * ICacheDataStat represents the response data statistics * * @internal */ export interface ICacheDataStat { /** * Indicates if the cache data is stale * Default is false */ isStale?: boolean; /** * Indicates if the cache data was populated from fresh data flush * Default is false */ isFromFreshDataFlush?: boolean; } /** * ICacheData represents the response data and its stats * * @internal */ export interface ICacheData { /** * The data piece of a cache entry */ data: T; /** * The statistics for the cache entry */ stats?: ICacheDataStat; } //# sourceMappingURL=ICacheData.d.ts.map