export interface Storage { get(key: string): Promise; put(key: string, value: any): Promise; set(key: string, value: any): Promise; }