1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-17 19:41:06 +03:00
Files
node-redis/lib/commands/SETBIT.ts

11 lines
360 B
TypeScript

import { TransformArgumentsReply } from '.';
import { BitValue } from './generic-transformers';
export const FIRST_KEY_INDEX = 1;
export function transformArguments(key: string, offset: number, value: BitValue): TransformArgumentsReply {
return ['SETBIT', key, offset.toString(), value.toString()];
}
export declare function transformReply(): BitValue;