1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00
This commit is contained in:
Leibale
2023-07-06 11:07:52 -04:00
parent 9e1ec97a55
commit 6ca420f15e
9 changed files with 45 additions and 44 deletions

View File

@@ -11,7 +11,7 @@ export default {
IS_READ_ONLY: true,
transformArguments(
key: RedisArgument,
cursor: number,
cursor: RedisArgument,
options?: ScanCommonOptions
) {
return pushScanArguments(['HSCAN', key], cursor, options);
@@ -27,7 +27,7 @@ export default {
}
return {
cursor: Number(cursor),
cursor,
entries
};
}