1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-04 15:02:09 +03:00

fix #1712 - fix LINDEX return type

This commit is contained in:
leibale
2021-11-09 10:39:07 -05:00
parent 3eb99dbe83
commit 69d98bf39c

View File

@@ -6,4 +6,4 @@ export function transformArguments(key: string, element: string): Array<string>
return ['LINDEX', key, element];
}
export declare function transformReply(): number | null;
export declare function transformReply(): string | null;