export type StorageAdapter = { get: (key: string) => Promise; set: (key: string, val: any) => Promise; };