Add param and return type to sendText

This commit is contained in:
Daniel Imms
2016-08-18 13:42:21 -07:00
parent 2c95aed6eb
commit d3dd3c6083
2 changed files with 5 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ export class ExtHostTerminal implements vscode.Terminal {
this._proxy = proxy;
}
public sendText(text: string, addNewLine: boolean = true) {
public sendText(text: string, addNewLine: boolean = true): void {
this._proxy.$sendText(this._id, text, addNewLine);
}