import {IBaseCacheOptions} from './IBaseCacheOptions'

export interface IRedisCacheOptions extends IBaseCacheOptions {
    readonly type: 'redis'
    readonly host?: string
    readonly port?: number
    readonly password?: string
    readonly db?: number
}
