/// import LRUCache from 'lru-cache'; /** * Simple LRU Cache that allows for keys of type Buffer * @hidden */ export default class Cache { _cache: LRUCache; constructor(opts: LRUCache.Options); set(key: string | Buffer, value: V): void; get(key: string | Buffer): V | undefined; del(key: string | Buffer): void; }