1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00
Files
node-redis/packages/client/lib/commands/LMOVE.ts

21 lines
415 B
TypeScript

export type LMoveSide = 'LEFT' | 'RIGHT';
export const FIRST_KEY_INDEX = 1;
export function transformArguments(
source: string,
destination: string,
sourceSide: LMoveSide,
destinationSide: LMoveSide
): Array<string> {
return [
'LMOVE',
source,
destination,
sourceSide,
destinationSide,
];
}
export declare function transformReply(): string | null;