mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Fix linter errors (hopefully)
This commit is contained in:
Vendored
+7
-5
@@ -962,14 +962,16 @@ declare module '@xterm/xterm' {
|
||||
* Focus the terminal.
|
||||
*/
|
||||
focus(): void;
|
||||
|
||||
|
||||
/**
|
||||
* Input data to application side.
|
||||
* The data is treated the same way as typed input at the terminal (will appear in the onData event).
|
||||
* The data is treated the same way as typed input at the terminal
|
||||
* (will appear in the onData event).
|
||||
* wasUserInput indicates, whether the input is genuine user input.
|
||||
* It is true by default and triggers additional actions like prompt focus or selection clearing.
|
||||
* Set it to false if your data sent does not resemble what a user would have typed
|
||||
* (e.g. sequence embedded data).
|
||||
* It is true by default and triggers additional actions like prompt
|
||||
* focus or selection clearing.
|
||||
* Set it to false if your data sent does not resemble
|
||||
* what a user would have typed (e.g. sequence embedded data).
|
||||
*/
|
||||
input(data: string, wasUserInput?: boolean): void;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user