UNPKG

@valkey/client

Version:

The source code and documentation for this package are in the main [node-redis](https://github.com/redis/node-redis) repo.

9 lines (8 loc) 567 B
import { ValkeyCommandArgument, ValkeyCommandArguments } from "."; import { GeoSearchFrom, GeoSearchBy, GeoSearchOptions } from "./generic-transformers"; export { FIRST_KEY_INDEX, IS_READ_ONLY } from "./GEOSEARCH"; interface GeoSearchStoreOptions extends GeoSearchOptions { STOREDIST?: true; } export declare function transformArguments(destination: ValkeyCommandArgument, source: ValkeyCommandArgument, from: GeoSearchFrom, by: GeoSearchBy, options?: GeoSearchStoreOptions): ValkeyCommandArguments; export declare function transformReply(reply: number): number;