UNPKG

@lakutata-component/cacher

Version:

Lakutata Cacher Component

9 lines (8 loc) 265 B
import { IBaseCacheOptions } from './IBaseCacheOptions'; export interface IRedisCacheOptions extends IBaseCacheOptions { readonly type: 'redis'; readonly host?: string; readonly port?: number; readonly password?: string; readonly db?: number; }