You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-10 11:43:01 +03:00
26 lines
761 B
TypeScript
26 lines
761 B
TypeScript
// import { RedisCommandArgument, RedisCommandArguments } from '.';
|
|
// import { GeoUnits, GeoRadiusStoreOptions, pushGeoRadiusStoreArguments } from './generic-transformers';
|
|
|
|
// export { FIRST_KEY_INDEX, IS_READ_ONLY } from './GEORADIUSBYMEMBER';
|
|
|
|
// export function transformArguments(
|
|
// key: RedisCommandArgument,
|
|
// member: string,
|
|
// radius: number,
|
|
// unit: GeoUnits,
|
|
// destination: RedisCommandArgument,
|
|
// options?: GeoRadiusStoreOptions,
|
|
// ): RedisCommandArguments {
|
|
// return pushGeoRadiusStoreArguments(
|
|
// ['GEORADIUSBYMEMBER'],
|
|
// key,
|
|
// member,
|
|
// radius,
|
|
// unit,
|
|
// destination,
|
|
// options
|
|
// );
|
|
// }
|
|
|
|
// export declare function transformReply(): number
|