You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
WIP
This commit is contained in:
@@ -1,30 +1,30 @@
|
||||
import { RedisCommandArgument, RedisCommandArguments } from '.';
|
||||
import { GeoReplyWith, GeoSearchOptions, GeoCoordinates, GeoUnits } from './generic-transformers';
|
||||
import { transformArguments as transformGeoRadiusArguments } from './GEORADIUS';
|
||||
// import { RedisCommandArgument, RedisCommandArguments } from '.';
|
||||
// import { GeoReplyWith, GeoSearchOptions, GeoCoordinates, GeoUnits } from './generic-transformers';
|
||||
// import { transformArguments as transformGeoRadiusArguments } from './GEORADIUS';
|
||||
|
||||
export { FIRST_KEY_INDEX, IS_READ_ONLY } from './GEORADIUS';
|
||||
// export { FIRST_KEY_INDEX, IS_READ_ONLY } from './GEORADIUS';
|
||||
|
||||
export function transformArguments(
|
||||
key: RedisCommandArgument,
|
||||
coordinates: GeoCoordinates,
|
||||
radius: number,
|
||||
unit: GeoUnits,
|
||||
replyWith: Array<GeoReplyWith>,
|
||||
options?: GeoSearchOptions
|
||||
): RedisCommandArguments {
|
||||
const args: RedisCommandArguments = transformGeoRadiusArguments(
|
||||
key,
|
||||
coordinates,
|
||||
radius,
|
||||
unit,
|
||||
options
|
||||
);
|
||||
// export function transformArguments(
|
||||
// key: RedisCommandArgument,
|
||||
// coordinates: GeoCoordinates,
|
||||
// radius: number,
|
||||
// unit: GeoUnits,
|
||||
// replyWith: Array<GeoReplyWith>,
|
||||
// options?: GeoSearchOptions
|
||||
// ): RedisCommandArguments {
|
||||
// const args: RedisCommandArguments = transformGeoRadiusArguments(
|
||||
// key,
|
||||
// coordinates,
|
||||
// radius,
|
||||
// unit,
|
||||
// options
|
||||
// );
|
||||
|
||||
args.push(...replyWith);
|
||||
// args.push(...replyWith);
|
||||
|
||||
args.preserve = replyWith;
|
||||
// args.preserve = replyWith;
|
||||
|
||||
return args;
|
||||
}
|
||||
// return args;
|
||||
// }
|
||||
|
||||
export { transformGeoMembersWithReply as transformReply } from './generic-transformers';
|
||||
// export { transformGeoMembersWithReply as transformReply } from './generic-transformers';
|
||||
|
Reference in New Issue
Block a user