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
409 B
TypeScript
10 lines
409 B
TypeScript
import { Command } from '../RESP/types';
|
|
import GEORADIUSBYMEMBER, { transformGeoRadiusByMemberArguments } from './GEORADIUSBYMEMBER';
|
|
|
|
export default {
|
|
FIRST_KEY_INDEX: GEORADIUSBYMEMBER.FIRST_KEY_INDEX,
|
|
IS_READ_ONLY: true,
|
|
transformArguments: transformGeoRadiusByMemberArguments.bind(undefined, 'GEORADIUSBYMEMBER_RO'),
|
|
transformReply: GEORADIUSBYMEMBER.transformReply
|
|
} as const satisfies Command;
|