import { CacheItem } from "./cache-item"; // ****************************** // Declarations: // ****************************** export class Cache { items: CacheItem[]; constructor() { this.items = []; } } // ******************************