mirror of
https://git.proxmox.com/git/mirror_xterm.js
synced 2025-10-29 04:57:26 +00:00
15 lines
347 B
TypeScript
15 lines
347 B
TypeScript
/**
|
|
* xterm.js: xterm, in the browser
|
|
* Copyright (c) 2014-2016, SourceLair Private Company (www.sourcelair.com (MIT License)
|
|
*/
|
|
|
|
export interface ITerminal {
|
|
rowContainer: HTMLElement;
|
|
ydisp: number;
|
|
lines: string[];
|
|
rows: number;
|
|
|
|
on(event: string, callback: () => void);
|
|
scrollDisp(disp: number, suppressScrollEvent: boolean);
|
|
}
|