(sessionName: string, key: string)
| 48 | } |
| 49 | |
| 50 | export function tmuxSendKey(sessionName: string, key: string): void { |
| 51 | execFileSync( |
| 52 | 'bash', |
| 53 | [`${SCRIPTS_DIR}/tmux-send.sh`, sessionName, '--key', key], |
| 54 | EXEC_OPTIONS, |
| 55 | ) |
| 56 | } |
| 57 | |
| 58 | export function tmuxCapture( |
| 59 | sessionName: string, |