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