Files
2026-07-13 12:44:30 +08:00

9 lines
186 B
TypeScript

export interface ITerminal {
readonly cols?: number;
readonly rows?: number;
reset: () => void;
write: (data: string) => void;
onData: (cb: (data: string) => void) => void;
}