You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +03:00
9 lines
407 B
TypeScript
9 lines
407 B
TypeScript
import { RedisCommandArguments } from '@node-redis/client/dist/lib/commands';
|
|
import { pushVerdictArguments } from '@node-redis/client/dist/lib/commands/generic-transformers';
|
|
|
|
export function transformArguments(dictionary: string, term: string | Array<string>): RedisCommandArguments {
|
|
return pushVerdictArguments(['FT.DICTDEL', dictionary], term);
|
|
}
|
|
|
|
export declare function transformReply(): number;
|