blue-fish-redis
Version:
这是一个修复漏洞后的redis
17 lines (16 loc) • 355 B
TypeScript
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[]];
}