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
@@ -3,14 +3,14 @@
* @license MIT
*/
import type { ITerminalAddon, Terminal } from '@xterm/xterm';
import type { WebglAddon as IWebglApi } from '@xterm/addon-webgl';
import { ICharacterJoinerService, ICharSizeService, ICoreBrowserService, IRenderService, IThemeService } from 'browser/services/Services';
import { ITerminal } from 'browser/Types';
import { EventEmitter, forwardEvent } from 'common/EventEmitter';
import { Disposable, toDisposable } from 'common/Lifecycle';
import { getSafariVersion, isSafari } from 'common/Platform';
import { ICoreService, IDecorationService, ILogService, IOptionsService } from 'common/services/Services';
import { ITerminalAddon, Terminal } from '@xterm/xterm';
import { WebglAddon as IWebglApi } from '@xterm/addon-webgl';
import { WebglRenderer } from './WebglRenderer';
import { setTraceLogger } from 'common/services/LogService';