| 4 | import { DebugAdapter } from "./debug.js"; |
| 5 | |
| 6 | export interface WTermOptions { |
| 7 | cols?: number; |
| 8 | rows?: number; |
| 9 | wasmUrl?: string; |
| 10 | autoResize?: boolean; |
| 11 | cursorBlink?: boolean; |
| 12 | debug?: boolean; |
| 13 | onData?: (data: string) => void; |
| 14 | onTitle?: (title: string) => void; |
| 15 | onResize?: (cols: number, rows: number) => void; |
| 16 | } |
| 17 | |
| 18 | export class WTerm { |
| 19 | element: HTMLElement; |
nothing calls this directly
no outgoing calls
no test coverage detected