MCPcopy
hub / github.com/vercel-labs/wterm / WTermOptions

Interface WTermOptions

packages/@wterm/dom/src/wterm.ts:6–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import { DebugAdapter } from "./debug.js";
5
6export 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
18export class WTerm {
19 element: HTMLElement;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected