/** * Interface that various platforms should implement for their own storage implementation */ export default interface IStorage { get: (key: string) => Promise; set: (key: string, value: string) => Promise; delete: (key: string) => Promise; }