sendText terminal API progress

This commit is contained in:
Daniel Imms
2016-08-16 14:17:47 -07:00
parent d0f834704f
commit cce4650a6b
4 changed files with 13 additions and 2 deletions

View File

@@ -26,4 +26,10 @@ export class MainThreadTerminalService extends MainThreadTerminalServiceShape {
public $show(terminalId: number, preserveFocus: boolean): void {
this._terminalService.show(!preserveFocus, terminalId);
}
public $sendText(terminalId: number, text: string, addNewLine: boolean): void {
this._terminalService.show(false, terminalId).then((terminalPanel) => {
// TODO: Implement
});
}
}