1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00
Files
node-redis/packages/client/lib/commands/CLIENT_SETNAME.ts

8 lines
218 B
TypeScript

import { RedisCommandArguments } from '.';
export function transformArguments(name: string): RedisCommandArguments {
return ['CLIENT', 'SETNAME', name];
}
export declare function transformReply(): string | null;