auth_pass is a string (password), not a boolean.

This commit is contained in:
Honza Dvorsky
2015-03-22 20:37:17 +00:00
parent a834d5f001
commit 2d74d784bd
+1 -1
View File
@@ -42,7 +42,7 @@ declare module "redis" {
retry_max_delay?: number;
connect_timeout?: number;
max_attempts?: number;
auth_pass?: boolean;
auth_pass?: string;
}
interface RedisClient extends NodeJS.EventEmitter {