Files
micro-service-api/node_modules/@redis/search/dist/lib/commands/SUGDEL.js

18 lines
544 B
JavaScript
Raw Normal View History

2025-11-11 12:36:06 +07:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
IS_READ_ONLY: true,
/**
* Deletes a string from a suggestion dictionary.
* @param parser - The command parser
* @param key - The suggestion dictionary key
* @param string - The suggestion string to delete
*/
parseCommand(parser, key, string) {
parser.push('FT.SUGDEL');
parser.pushKey(key);
parser.push(string);
},
transformReply: undefined
};
//# sourceMappingURL=SUGDEL.js.map