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

fix #1875 - fix XPENDING_RANGE id type (#1879)

This commit is contained in:
Leibale Eidelman
2022-01-31 05:41:31 -05:00
committed by GitHub
parent 741aff0c30
commit 21270ba6e2

View File

@@ -33,14 +33,14 @@ export function transformArguments(
}
type XPendingRangeRawReply = Array<[
id: number,
id: RedisCommandArgument,
consumer: RedisCommandArgument,
millisecondsSinceLastDelivery: number,
deliveriesCounter: number
]>;
type XPendingRangeReply = Array<{
id: number;
id: RedisCommandArgument;
owner: RedisCommandArgument;
millisecondsSinceLastDelivery: number;
deliveriesCounter: number;