1 2 3 4 5
import {LRUMap} from 'lru_map' export class HandleResolutionsCache { cache: LRUMap<string, string> = new LRUMap(500) }