You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +03:00
10 lines
437 B
TypeScript
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;
|