redis: add missing methods to RedisClient

This commit is contained in:
MugeSo
2015-08-20 12:05:49 +09:00
parent 014ff4745d
commit 907e23613e
+4
View File
@@ -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<any>): boolean;