interface StorageInterface { get(name: string): T; set( name: string, data: T, ); } export default StorageInterface;