We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43969a3 commit 0093eb0Copy full SHA for 0093eb0
packages/json/lib/commands/MSET.ts
@@ -1,5 +1,5 @@
1
import { RedisJSON, transformRedisJsonArgument } from '.';
2
-import { RedisCommandArgument, RedisCommandArguments } from '@redis/client/dist/lib/commands';
+import { RedisCommandArgument } from '@redis/client/dist/lib/commands';
3
4
export const FIRST_KEY_INDEX = 1;
5
@@ -10,6 +10,7 @@ interface JsonMSetItem {
10
}
11
12
export function transformArguments(items: Array<JsonMSetItem>): Array<string> {
13
+
14
const args = new Array(1 + items.length * 3);
15
args[0] = 'JSON.MSET';
16
0 commit comments