-first commit
This commit is contained in:
16
node_modules/@redis/client/dist/lib/commands/CLUSTER_DELSLOTSRANGE.d.ts
generated
vendored
Normal file
16
node_modules/@redis/client/dist/lib/commands/CLUSTER_DELSLOTSRANGE.d.ts
generated
vendored
Normal 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
|
||||
Reference in New Issue
Block a user