export interface IStorageRepository { deleteAsync(key: TKey): Promise; getAsync(key: TKey): Promise; setAsync(key: TKey, entity: T): Promise; }