From 2d74d784bda137f653415444b549bdb7a4827994 Mon Sep 17 00:00:00 2001 From: Honza Dvorsky Date: Sun, 22 Mar 2015 20:37:17 +0000 Subject: [PATCH] auth_pass is a string (password), not a boolean. --- redis/redis.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis/redis.d.ts b/redis/redis.d.ts index a3bd49e91..902cb770d 100644 --- a/redis/redis.d.ts +++ b/redis/redis.d.ts @@ -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 {