mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-11 12:30:18 +00:00
Merge pull request #3938 from czechboy0/patch-1
redis: auth_pass is a string (password), not a boolean.
This commit is contained in:
Vendored
+2
-2
@@ -33,7 +33,7 @@ declare module "redis" {
|
||||
}
|
||||
|
||||
interface ClientOpts {
|
||||
parser: string;
|
||||
parser?: string;
|
||||
return_buffers?: boolean;
|
||||
detect_buffers?: boolean;
|
||||
socket_nodelay?: boolean;
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user