Skip to content

Commit 0093eb0

Browse files
committed
Update MSET.ts
Removed unused RedisCommandArguments
1 parent 43969a3 commit 0093eb0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: packages/json/lib/commands/MSET.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { RedisJSON, transformRedisJsonArgument } from '.';
2-
import { RedisCommandArgument, RedisCommandArguments } from '@redis/client/dist/lib/commands';
2+
import { RedisCommandArgument } from '@redis/client/dist/lib/commands';
33

44
export const FIRST_KEY_INDEX = 1;
55

@@ -10,6 +10,7 @@ interface JsonMSetItem {
1010
}
1111

1212
export function transformArguments(items: Array<JsonMSetItem>): Array<string> {
13+
1314
const args = new Array(1 + items.length * 3);
1415
args[0] = 'JSON.MSET';
1516

0 commit comments

Comments
 (0)