You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
wip
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
|
||||
import { RedisArgument, NumberReply, Command } from '../RESP/types';
|
||||
import { pushZInterArguments, ZInterKeyAndWeight, ZInterKeys, ZInterOptions } from './ZINTER';
|
||||
import { pushZInterArguments, ZInterOptions } from './ZINTER';
|
||||
import { ZKeys } from './generic-transformers';
|
||||
|
||||
export default {
|
||||
FIRST_KEY_INDEX: 1,
|
||||
transformArguments(
|
||||
destination: RedisArgument,
|
||||
keys: ZInterKeys<RedisArgument> | ZInterKeys<ZInterKeyAndWeight>,
|
||||
keys: ZKeys,
|
||||
options?: ZInterOptions
|
||||
) {
|
||||
return pushZInterArguments(['ZINTERSTORE', destination], keys, options);
|
||||
|
Reference in New Issue
Block a user