1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-03 04:01:40 +03:00
Files
node-redis/packages/client/lib/commands/GEOSEARCH_WITH.ts
2021-12-20 14:47:51 -05:00

24 lines
782 B
TypeScript

import { RedisCommandArgument, RedisCommandArguments } from '.';
import { GeoSearchFrom, GeoSearchBy, GeoReplyWith, GeoSearchOptions } from './generic-transformers';
import { transformArguments as geoSearchTransformArguments } from './GEOSEARCH';
export { FIRST_KEY_INDEX, IS_READ_ONLY } from './GEOSEARCH';
export function transformArguments(
key: RedisCommandArgument,
from: GeoSearchFrom,
by: GeoSearchBy,
replyWith: Array<GeoReplyWith>,
options?: GeoSearchOptions
): RedisCommandArguments {
const args: RedisCommandArguments = geoSearchTransformArguments(key, from, by, options);
args.push(...replyWith);
args.preserve = replyWith;
return args;
}
export { transformGeoMembersWithReply as transformReply } from './generic-transformers';