You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
6 lines
182 B
TypeScript
6 lines
182 B
TypeScript
export function transformArguments(option: string, value: string): Array<string> {
|
|
return ['FT.CONFIG', 'SET', option, value];
|
|
}
|
|
|
|
export declare function transformReply(): 'OK';
|