export interface PrexStorage { getItem(key: string): Promise; setItem(key: string, value: T): Promise; removeItem(key: string): Promise; getItemFromSessionStorage(key: string): Promise; setItemToSessionStorage(key: string, value: T): Promise; removeItemFromSessionStorage(key: string): Promise; }