You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +03:00
15
packages/client/lib/commands/LCS_LEN.ts
Normal file
15
packages/client/lib/commands/LCS_LEN.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { RedisCommandArgument, RedisCommandArguments } from '.';
|
||||
import { transformArguments as transformLcsArguments } from './LCS';
|
||||
|
||||
export { FIRST_KEY_INDEX, IS_READ_ONLY } from './LCS';
|
||||
|
||||
export function transformArguments(
|
||||
key1: RedisCommandArgument,
|
||||
key2: RedisCommandArgument
|
||||
): RedisCommandArguments {
|
||||
const args = transformLcsArguments(key1, key2);
|
||||
args.push('LEN');
|
||||
return args;
|
||||
}
|
||||
|
||||
export declare function transformReply(): number;
|
Reference in New Issue
Block a user