Final fixes

This commit is contained in:
arencoskun
2024-02-01 13:11:54 +03:00
parent bbd1a1dbe2
commit 09a0dd658d
+6 -6
View File
@@ -1191,15 +1191,15 @@ export class Terminal extends CoreTerminal implements ITerminal {
return false;
}
/**
* Input data to application side.
* The data is treated the same way as typed input at the terminal.
* (will appear in the onData event).
*/
* Input data to application side.
* The data is treated the same way as typed input at the terminal.
* (will appear in the onData event).
*/
public input(data: string): void {
this.coreService.triggerDataEvent(data, true);
return this.write(data);
this.write(data);
}
/**