1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00
Files
node-redis/packages/client/lib/commands/GEORADIUSBYMEMBER_RO_WITH.ts
2023-05-08 11:04:22 +03:00

10 lines
437 B
TypeScript

import { Command } from '../RESP/types';
import GEORADIUSBYMEMBER_WITH, { transformGeoRadiusByMemberWithArguments } from './GEORADIUSBYMEMBER_WITH';
export default {
FIRST_KEY_INDEX: GEORADIUSBYMEMBER_WITH.FIRST_KEY_INDEX,
IS_READ_ONLY: true,
transformArguments: transformGeoRadiusByMemberWithArguments.bind(undefined, 'GEORADIUSBYMEMBER_RO'),
transformReply: GEORADIUSBYMEMBER_WITH.transformReply
} as const satisfies Command;