GEORADIUSBYMEMBER_RO.d.ts 459 B

123456
  1. import { RedisCommandArgument, RedisCommandArguments } from '.';
  2. import { GeoSearchOptions, GeoUnits } from './generic-transformers';
  3. export declare const FIRST_KEY_INDEX = 1;
  4. export declare const IS_READ_ONLY = true;
  5. export declare function transformArguments(key: RedisCommandArgument, member: string, radius: number, unit: GeoUnits, options?: GeoSearchOptions): RedisCommandArguments;
  6. export declare function transformReply(): Array<RedisCommandArgument>;