UNPKG

@netology-group/account

Version:
9 lines (7 loc) 168 B
/** @flow */ type Key = string export interface IAbstractStorage { setItem(a: Key, b: string): void; getItem(a: Key): string | null; removeItem(a: Key): void; }