From 37fc878f3732c7aadfa5095f1f7752eeb5c504ac Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Tue, 18 Jun 2019 17:33:08 +0200 Subject: [PATCH] fixed xterm imports --- terminus-terminal/src/frontends/xtermFrontend.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/terminus-terminal/src/frontends/xtermFrontend.ts b/terminus-terminal/src/frontends/xtermFrontend.ts index aec6ba0a..462ef34e 100644 --- a/terminus-terminal/src/frontends/xtermFrontend.ts +++ b/terminus-terminal/src/frontends/xtermFrontend.ts @@ -7,7 +7,9 @@ import { SearchAddon } from 'xterm-addon-search' import { WebglAddon } from 'xterm-addon-webgl' import './xterm.css' import deepEqual from 'deep-equal' -import { Attributes, AttributeData, CellData } from 'xterm/src/common/buffer/BufferLine' +import { Attributes } from 'xterm/src/common/buffer/Constants' +import { AttributeData } from 'xterm/src/common/buffer/AttributeData' +import { CellData } from 'xterm/src/common/buffer/CellData' const COLOR_NAMES = [ 'black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'white',