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

@@ -149,6 +149,7 @@ export abstract class MainThreadOutputServiceShape {
export abstract class MainThreadTerminalServiceShape {
$createTerminal(name?: string): TPromise<number> { throw ni(); }
$show(terminalId: number, preserveFocus: boolean): void { throw ni(); }
$sendText(terminalId: number, text: string, addNewLine: boolean): void { throw ni(); }
}
export interface MyQuickPickItems extends IPickOpenEntry {