Removed another trailing whitespace

This commit is contained in:
Pietro Paolo Vismara
2017-12-06 12:29:48 +01:00
committed by GitHub
parent f4660b2aee
commit f0c8aaad5d

View File

@@ -240,7 +240,7 @@ declare namespace IORedis {
hget(key: string, field: string, callback: (err: Error, res: string) => void): void;
hget(key: string, field: string): Promise<string>;
hmset(key: string, field: string, value: any, ...args: string[]): Promise<0 | 1>;
hmset(key: string, data: any, callback: (err: Error, res: 0 | 1) => void): void;
hmset(key: string, data: any): Promise<0 | 1>;