1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-03 04:01:40 +03:00
Files
node-redis/packages/time-series/lib/commands/DECRBY.ts
2021-11-29 08:52:14 -05:00

11 lines
420 B
TypeScript

import { RedisCommandArguments } from '@node-redis/client/dist/lib/commands';
import { IncrDecrOptions, transformIncrDecrArguments } from '.';
export const FIRST_KEY_INDEX = 1;
export function transformArguments(key: string, value: number, options?: IncrDecrOptions): RedisCommandArguments {
return transformIncrDecrArguments('TS.DECRBY', key, value, options);
}
export declare function transformReply(): number;