( button: number, col: number, row: number, action: 'press' | 'release', )
| 135 | } |
| 136 | |
| 137 | function sgrMouse( |
| 138 | button: number, |
| 139 | col: number, |
| 140 | row: number, |
| 141 | action: 'press' | 'release', |
| 142 | ): string { |
| 143 | return `\u001b[<${button};${col};${row}${action === 'press' ? 'M' : 'm'}` |
| 144 | } |
| 145 | |
| 146 | function sgrWheel( |
| 147 | direction: 'up' | 'down', |
no outgoing calls
no test coverage detected