/** @flow */ type Key = string export interface IAbstractStorage { setItem(a: Key, b: string): void; getItem(a: Key): string | null; removeItem(a: Key): void; }