// app import { ICacheManagerOptions } from '.'; import { redisClient } from '../../utils/async-wrappers'; export interface IRedisCacheManagerOptionsKeys { prefix: string; organizationCurrentStorage: string; organizationMaxStorage: string; organizationSet: string; lruSet: string; } export interface IRedisCacheManagerOptions extends ICacheManagerOptions { client: redisClient.RedisClient; keys: IRedisCacheManagerOptionsKeys; }