export interface StorageService { get(key: string): Promise; save(key: string, obj: any): Promise; remove(key: string): Promise; }