export interface ICacheBackend { get(objectType: string, objectId: string, options?: any): Promise | null>; set(objectType: string, objectId: string, data: ICachedValue, options?: any): Promise; } export interface ICachedValue { value: T; timestamp: number; }