import { ICacheGetOptions, ICacheSetOptions } from '../../../libs/cache/ICacheOptions'; export interface IRedisCacheClient { connect(): Promise; get(key: string, options?: ICacheGetOptions): Promise; set(key: string, value: any, options?: ICacheSetOptions): Promise; close(): Promise; removeKeysByPattern(prefix: string): Promise; }