Pass terminal ID through when creating terminal instance

This commit is contained in:
Daniel Imms
2016-08-16 08:32:28 -07:00
parent 57375e958d
commit 0d90238759
8 changed files with 26 additions and 18 deletions

View File

@@ -147,7 +147,7 @@ export abstract class MainThreadOutputServiceShape {
}
export abstract class MainThreadTerminalServiceShape {
$createTerminal(name?: string): void { throw ni(); }
$createTerminal(name?: string): TPromise<number> { throw ni(); }
$show(terminalId: number, preserveFocus: boolean): void { throw ni(); }
}