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

fix #1998 - fix RPOPLPUSH return type (#1999)

This commit is contained in:
Leibale Eidelman
2022-02-21 12:56:42 -05:00
committed by GitHub
parent f738ac56b3
commit c03ab8803d

View File

@@ -9,4 +9,4 @@ export function transformArguments(
return ['RPOPLPUSH', source, destination];
}
export declare function transformReply(): number | null;
export declare function transformReply(): RedisCommandArgument | null;