export interface SetOptions { expiresInSeconds: number; } export interface ICacheManager { set(key: string, data: T, options?: SetOptions): Promise; get(key: string): Promise; del(key: string[]): Promise; }