]> git.proxmox.com Git - mirror_xterm.js.git/blame - src/Interfaces.ts
Rename CompositionHelper.js -> CompositionHelper.ts
[mirror_xterm.js.git] / src / Interfaces.ts
CommitLineData
e0d98711
DI
1/**
2 * xterm.js: xterm, in the browser
3 * Copyright (c) 2014-2016, SourceLair Private Company (www.sourcelair.com (MIT License)
4 */
5
6export interface ITerminal {
7 rowContainer: HTMLElement;
8 ydisp: number;
9 lines: string[];
10 rows: number;
11
12 on(event: string, callback: () => void);
13 scrollDisp(disp: number, suppressScrollEvent: boolean);
14}