From 38ea4d1d1d85d1817117cffdb4afd60598d6d4dd Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Fri, 31 May 2019 21:40:15 -0700 Subject: [PATCH] Fix lint --- addons/xterm-addon-attach/typings/attach.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/xterm-addon-attach/typings/attach.d.ts b/addons/xterm-addon-attach/typings/attach.d.ts index a4d6deae..6f0f6c5c 100644 --- a/addons/xterm-addon-attach/typings/attach.d.ts +++ b/addons/xterm-addon-attach/typings/attach.d.ts @@ -10,7 +10,7 @@ export interface IAttachOptions { /** * Whether input should be written to the backend. Defaults to `true`. */ - bidirectional?: boolean, + bidirectional?: boolean; /** * Whether to use UTF8 binary transport for incoming messages. Defaults to `false`. @@ -18,7 +18,7 @@ export interface IAttachOptions { * Always send string messages from the backend if this options is false, * otherwise always binary UTF8 data. */ - inputUtf8?: boolean + inputUtf8?: boolean; } export class AttachAddon implements ITerminalAddon {