You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
15 lines
342 B
TypeScript
15 lines
342 B
TypeScript
import { RedisCommandArgument } from '@redis/client/dist/lib/commands';
|
|
|
|
export const FIRST_KEY_INDEX = 1;
|
|
|
|
export function transformArguments(index: RedisCommandArgument, cursorId: number) {
|
|
return [
|
|
'FT.CURSOR',
|
|
'DEL',
|
|
index,
|
|
cursorId.toString()
|
|
];
|
|
}
|
|
|
|
export declare function transformReply(): 'OK';
|