-first commit
This commit is contained in:
17
node_modules/@redis/search/dist/lib/commands/DICTADD.d.ts
generated
vendored
Normal file
17
node_modules/@redis/search/dist/lib/commands/DICTADD.d.ts
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
import { CommandParser } from '@redis/client/dist/lib/client/parser';
|
||||
import { RedisArgument, NumberReply } from '@redis/client/dist/lib/RESP/types';
|
||||
import { RedisVariadicArgument } from '@redis/client/dist/lib/commands/generic-transformers';
|
||||
declare const _default: {
|
||||
readonly NOT_KEYED_COMMAND: true;
|
||||
readonly 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
|
||||
*/
|
||||
readonly parseCommand: (this: void, parser: CommandParser, dictionary: RedisArgument, term: RedisVariadicArgument) => void;
|
||||
readonly transformReply: () => NumberReply;
|
||||
};
|
||||
export default _default;
|
||||
//# sourceMappingURL=DICTADD.d.ts.map
|
||||
Reference in New Issue
Block a user