Files
micro-service-api/node_modules/@redis/client/dist/lib/commands/CLUSTER_DELSLOTSRANGE.d.ts
2025-11-11 12:36:06 +07:00

16 lines
729 B
TypeScript

import { CommandParser } from '../client/parser';
import { SimpleStringReply } from '../RESP/types';
import { SlotRange } from './generic-transformers';
declare const _default: {
readonly NOT_KEYED_COMMAND: true;
readonly IS_READ_ONLY: true;
/**
* Removes hash slot ranges from the current node in a Redis Cluster
* @param parser - The Redis command parser
* @param ranges - One or more slot ranges to be removed, each specified as [start, end]
*/
readonly parseCommand: (this: void, parser: CommandParser, ranges: SlotRange | Array<SlotRange>) => void;
readonly transformReply: () => SimpleStringReply<'OK'>;
};
export default _default;
//# sourceMappingURL=CLUSTER_DELSLOTSRANGE.d.ts.map