1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00
This commit is contained in:
dovi
2023-07-05 14:41:15 -04:00
parent cac51e5edb
commit ffa5c50fc0
2 changed files with 48 additions and 46 deletions

View File

@@ -1,11 +1,11 @@
import { strict as assert } from 'assert'; import { strict as assert } from 'assert';
import testUtils, { GLOBAL } from '../test-utils'; import testUtils, { GLOBAL } from '../test-utils';
import { transformArguments } from './MADD'; import MADD from './MADD';
describe('MADD', () => { describe('MADD', () => {
it('transformArguments', () => { it('transformArguments', () => {
assert.deepEqual( assert.deepEqual(
transformArguments([{ MADD.transformArguments([{
key: '1', key: '1',
timestamp: 0, timestamp: 0,
value: 0 value: 0

View File

@@ -1,14 +1,16 @@
import { Timestamp, transformTimestampArgument } from '.'; import { Timestamp, transformTimestampArgument } from '.';
import { ArrayReply, NumberReply, Command } from '@redis/client/dist/lib/RESP/types';
export const FIRST_KEY_INDEX = 1; export interface TsMAddSample {
interface MAddSample {
key: string; key: string;
timestamp: Timestamp; timestamp: Timestamp;
value: number; value: number;
} }
export function transformArguments(toAdd: Array<MAddSample>): Array<string> { export default {
FIRST_KEY_INDEX: 1,
IS_READ_ONLY: false,
transformArguments(toAdd: Array<TsMAddSample>) {
const args = ['TS.MADD']; const args = ['TS.MADD'];
for (const { key, timestamp, value } of toAdd) { for (const { key, timestamp, value } of toAdd) {
@@ -20,6 +22,6 @@ export function transformArguments(toAdd: Array<MAddSample>): Array<string> {
} }
return args; return args;
} },
transformReply: undefined as unknown as () => ArrayReply<NumberReply>
export declare function transformReply(): Array<number>; } as const satisfies Command;