import { IKeyValueStorage } from '../types'; /** * Stores objects in memory. It can store any key-value pairs. * This is just a placeholder for a proper storage implementation. */ export default class InMemoryStorage implements IKeyValueStorage { protected storage: any; constructor(); load(key: string): Promise; save(key: string, value: any): Promise; }