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

fix ZUNION

This commit is contained in:
dovi
2023-05-02 17:27:57 -04:00
parent afa394e35d
commit e1727d16a1
4 changed files with 82 additions and 74 deletions

View File

@@ -170,6 +170,7 @@ import ZREM from './ZREM';
import ZREVRANK from './ZREVRANK';
import ZSCAN from './ZSCAN';
import ZSCORE from './ZSCORE';
import ZUNION from './ZUNION';
import { Command } from '../RESP/types';
export default {
@@ -517,5 +518,7 @@ export default {
ZSCAN,
zScan: ZSCAN,
ZSCORE,
zScore: ZSCORE
zScore: ZSCORE,
ZUNION,
zUnion: ZUNION
} as const satisfies Record<string, Command>;