import {Cache} from '../Cache'; import {MapCache} from './MapCache'; export class MemoryCache extends Cache { constructor() { super(new MapCache()); } }