export abstract class StorageService { get: (key: string) => Promise; save: (key: string, obj: any) => Promise; remove: (key: string) => Promise; }