export default interface StorageInterface { get(key: string): Promise | any; set(key: string, value: any): Promise | void; remove(key: string): Promise | void; }