Make addon api imports consistent

This commit is contained in:
Daniel Imms
2023-11-02 08:54:49 -07:00
parent 4c275a287f
commit 4beb7d0595
11 changed files with 23 additions and 23 deletions
+2 -2
View File
@@ -5,8 +5,8 @@
* Implements the attach method, that attaches the terminal to a WebSocket stream.
*/
import { Terminal, IDisposable, ITerminalAddon } from '@xterm/xterm';
import { AttachAddon as IAttachApi } from '@xterm/addon-attach';
import type { Terminal, IDisposable, ITerminalAddon } from '@xterm/xterm';
import type { AttachAddon as IAttachApi } from '@xterm/addon-attach';
interface IAttachOptions {
bidirectional?: boolean;