WIP refactor of integrated terminal part

This commit is contained in:
Daniel Imms
2016-09-09 19:01:16 -07:00
parent f0644a47fc
commit 9981aefa8a
10 changed files with 1390 additions and 892 deletions

View File

@@ -153,7 +153,7 @@ export abstract class MainThreadOutputServiceShape {
}
export abstract class MainThreadTerminalServiceShape {
$createTerminal(name?: string): TPromise<number> { throw ni(); }
$createTerminal(name?: string): number { throw ni(); }
$dispose(terminalId: number): void { throw ni(); }
$hide(terminalId: number): void { throw ni(); }
$sendText(terminalId: number, text: string, addNewLine: boolean): void { throw ni(); }