import { NumberReply, Command } from '../RESP/types'; import LCS from './LCS'; export default { IS_READ_ONLY: LCS.IS_READ_ONLY, /** * Constructs the LCS command with LEN option * * @param args - The same parameters as LCS command * @see https://redis.io/commands/lcs/ */ parseCommand(...args: Parameters) { const parser = args[0]; LCS.parseCommand(...args); parser.push('LEN'); }, transformReply: undefined as unknown as () => NumberReply } as const satisfies Command;