You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-09 00:22:08 +03:00
14 lines
408 B
TypeScript
14 lines
408 B
TypeScript
import { ArrayReply, SetReply, BlobStringReply, Command } from '@redis/client/dist/lib/RESP/types';
|
|
|
|
export default {
|
|
FIRST_KEY_INDEX: undefined,
|
|
IS_READ_ONLY: true,
|
|
transformArguments() {
|
|
return ['FT._LIST'];
|
|
},
|
|
transformReply: {
|
|
2: undefined as unknown as () => ArrayReply<BlobStringReply>,
|
|
3: undefined as unknown as () => SetReply<BlobStringReply>
|
|
}
|
|
} as const satisfies Command;
|