1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-10 11:43:01 +03:00
Files
node-redis/lib/commands/COMMAND_COUNT.ts
2021-10-04 17:30:18 -04:00

10 lines
224 B
TypeScript

import { TransformArgumentsReply } from '.';
export const IS_READ_ONLY = true;
export function transformArguments(): TransformArgumentsReply {
return ['COMMAND', 'COUNT'];
}
declare function transformReply(): number;