export interface Storage { getItem(key: string): string | null | Promise; removeItem(key: string): void | Promise; setItem(key: string, data: string): void | Promise; }