-first commit

This commit is contained in:
2025-11-11 12:36:06 +07:00
commit b99c214434
5683 changed files with 713336 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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