mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 18:19:12 +01:00
Add param and return type to sendText
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user