From 907e23613e49fb5a979ee0e8cd0d8ad8b6f3cc43 Mon Sep 17 00:00:00 2001 From: MugeSo Date: Thu, 20 Aug 2015 12:05:49 +0900 Subject: [PATCH] redis: add missing methods to RedisClient --- redis/redis.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/redis/redis.d.ts b/redis/redis.d.ts index 444b91c4c..c7e068d47 100644 --- a/redis/redis.d.ts +++ b/redis/redis.d.ts @@ -69,6 +69,10 @@ declare module "redis" { server_info: ServerInfo; end(): void; + unref(): void; + + // Low level command execution + send_command(command:string, ...args:any[]): boolean; // Connection (http://redis.io/commands#connection) auth(password:string, callback?:ResCallbackT): boolean;