/** * ------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. * See License in the project root for license information. * ------------------------------------------------------------------------------------------- */ /** * item that is stored in cache * * @export * @interface CacheItem */ export interface CacheItem { /** * date and time that item was retrieved from api/stored in cache * * @type {number} * @memberof CacheItem */ timeCached?: number; }