1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00
Files
node-redis/packages/client/lib/commands/GEOSEARCHSTORE.ts

40 lines
880 B
TypeScript

import { GeoSearchFrom, GeoSearchBy, GeoSearchOptions, pushGeoSearchArguments } from './generic-transformers';
export const FIRST_KEY_INDEX = 1;
export const IS_READ_ONLY = true;
interface GeoSearchStoreOptions extends GeoSearchOptions {
STOREDIST?: true;
}
export function transformArguments(
destination: string,
source: string,
from: GeoSearchFrom,
by: GeoSearchBy,
options?: GeoSearchStoreOptions
): Array<string> {
const args = pushGeoSearchArguments(
['GEOSEARCHSTORE', destination],
source,
from,
by,
options
);
if (options?.STOREDIST) {
args.push('STOREDIST');
}
return args;
}
export function transformReply(reply: number): number {
if (typeof reply !== 'number') {
throw new TypeError(`https://github.com/redis/redis/issues/9261`);
}
return reply;
}