export interface LRUCache { clear: () => void; has: (key: string) => boolean; get: (key: string) => T | undefined; set: (key: string, value: T) => T; } /** * Adapted from https://github.com/dominictarr/hashlru/ (MIT License) */ export default function (maxsize?: number): LRUCache; //# sourceMappingURL=lruCache.d.ts.map