1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-03 04:01:40 +03:00
Files
node-redis/packages/client/lib/commands/WATCH.ts
2022-03-08 17:26:13 -05:00

11 lines
333 B
TypeScript

import { RedisCommandArguments } from '.';
import { pushVerdictArguments } from './generic-transformers';
export const FIRST_KEY_INDEX = 1;
export function transformArguments(key: string | Array<string>): RedisCommandArguments {
return pushVerdictArguments(['WATCH'], key);
}
export declare function transformReply(): string;