1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00

fix ZUNIONSTORE

This commit is contained in:
dovi
2023-05-02 17:43:10 -04:00
parent d643134dce
commit 31c91decec
4 changed files with 82 additions and 77 deletions

View File

@@ -171,6 +171,7 @@ import ZREVRANK from './ZREVRANK';
import ZSCAN from './ZSCAN';
import ZSCORE from './ZSCORE';
import ZUNION from './ZUNION';
import ZUNIONSTORE from './ZUNIONSTORE';
import { Command } from '../RESP/types';
export default {
@@ -520,5 +521,7 @@ export default {
ZSCORE,
zScore: ZSCORE,
ZUNION,
zUnion: ZUNION
zUnion: ZUNION,
ZUNIONSTORE,
zUnionStore: ZUNIONSTORE,
} as const satisfies Record<string, Command>;