(terminal: Terminal, data: string | Uint8Array)
| 16 | } |
| 17 | |
| 18 | function writeP(terminal: Terminal, data: string | Uint8Array): Promise<void> { |
| 19 | return new Promise(r => terminal.write(data, r)); |
| 20 | } |
| 21 | |
| 22 | class TestSelectionService { |
| 23 | private _model: SelectionModel; |
no test coverage detected