UNPKG

blue-fish-redis

Version:
17 lines (16 loc) 355 B
import * as Redis from 'ioredis'; export { Redis }; export declare namespace CoaRedis { interface Dic<T> { [key: string]: T; } interface Config { host: string; port: number; db: number; password: string; prefix: string; trace: boolean; } type CacheDelete = [string, string[]]; }