/** * Mnemonist LRUCacheWithDelete Typings * ===================================== */ import LRUCache from './lru-cache'; export default class LRUCacheWithDelete extends LRUCache { delete(key: K): boolean; remove(key: K, missing?: T): V | T; }