import { transformReplyNumber } from './generic-transformers'; export const FIRST_KEY_INDEX = 1; export function transformArguments(key: string | Array): Array { const args = ['TOUCH']; if (typeof key === 'string') { args.push(key); } else { args.push(...key); } return args; } export const transformReply = transformReplyNumber;