This commit is contained in:
Daniel Imms
2019-05-31 21:40:15 -07:00
parent 27fc4d1639
commit 38ea4d1d1d
+2 -2
View File
@@ -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 {