/** * `OnMemoryStorage` is used instead of `window.localStorage`. * I hope you don't need it. */ export default class OnMemoryStorage { dictionary: object; constructor(dictionary?: {}); getItem(key: any): any; setItem(key: any, value: any): void; removeItem(key: any): void; }