-first commit
This commit is contained in:
18
node_modules/@redis/search/dist/lib/commands/DICTADD.js
generated
vendored
Normal file
18
node_modules/@redis/search/dist/lib/commands/DICTADD.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
NOT_KEYED_COMMAND: true,
|
||||
IS_READ_ONLY: true,
|
||||
/**
|
||||
* Adds terms to a dictionary.
|
||||
* @param parser - The command parser
|
||||
* @param dictionary - Name of the dictionary to add terms to
|
||||
* @param term - One or more terms to add to the dictionary
|
||||
*/
|
||||
parseCommand(parser, dictionary, term) {
|
||||
parser.push('FT.DICTADD', dictionary);
|
||||
parser.pushVariadic(term);
|
||||
},
|
||||
transformReply: undefined
|
||||
};
|
||||
//# sourceMappingURL=DICTADD.js.map
|
||||
Reference in New Issue
Block a user