/* eslint-disable @typescript-eslint/no-explicit-any */ export interface ICacheStorage { get(key: string, immutable?: boolean): Promise; set( key: string, ttlMilliseconds: number, value: T, immutable?: boolean ): Promise; evict(key: string): Promise; }