export type CacheSetOptions = { ttlSeconds?: number; }; export interface CacheService { get(key: string): Promise; set(key: string, value: T, options?: CacheSetOptions): Promise; del(key: string): Promise; }