UNPKG

@yoroi/types

Version:
6 lines (5 loc) 174 B
export interface BaseStorage { getItem(key: string): Promise<string | null> setItem(key: string, value: string): Promise<void> removeItem(key: string): Promise<void> }