UNPKG

johnycash

Version:

Easy distributed caching for Node.js

11 lines 308 B
export interface RedisConfig { host: string; port: number; username?: string; password?: string; db?: number; tls?: any; family?: number | string; } export declare function parseRedisConnectionString(redisUrl: string): RedisConfig; //# sourceMappingURL=redis-conig-parser.d.ts.map