You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-10 11:43:01 +03:00
13 lines
297 B
TypeScript
13 lines
297 B
TypeScript
import { BlobStringReply, NullReply, Command } from '../RESP/types';
|
|
|
|
export default {
|
|
IS_READ_ONLY: true,
|
|
transformArguments() {
|
|
return [
|
|
'CLIENT',
|
|
'GETNAME'
|
|
];
|
|
},
|
|
transformReply: undefined as unknown as () => BlobStringReply | NullReply
|
|
} as const satisfies Command;
|