From c51a0b745439b60cda5c49d4ecf2873bf08e1dae Mon Sep 17 00:00:00 2001 From: arencoskun Date: Thu, 1 Feb 2024 16:05:02 +0300 Subject: [PATCH] Fix linter errors (hopefully) --- typings/xterm.d.ts | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/typings/xterm.d.ts b/typings/xterm.d.ts index 95c368b1..c8189e18 100644 --- a/typings/xterm.d.ts +++ b/typings/xterm.d.ts @@ -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;