export default class MemoryCache { private readonly cache; get(key: string): T | null; put(key: string, thing: T): void; }