(ev: any)
| 23 | export class TestTerminal extends CoreBrowserTerminal { |
| 24 | public get curAttrData(): IAttributeData { return (this as any)._inputHandler._curAttrData; } |
| 25 | public keyDown(ev: any): boolean | undefined { return this._keyDown(ev); } |
| 26 | public keyPress(ev: any): boolean { return this._keyPress(ev); } |
| 27 | public writeP(data: string | Uint8Array): Promise<void> { |
| 28 | return new Promise(r => this.write(data, r)); |
no test coverage detected