1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00
Files
node-redis/packages/search/lib/commands/SUGDEL.ts
2021-11-16 02:35:24 -05:00

6 lines
240 B
TypeScript

export function transformArguments(key: string, string: string): Array<string> {
return ['FT.SUGDEL', key, string];
}
export { transformReplyBoolean as transformReply } from '@node-redis/client/dist/lib/commands/generic-transformers';