| 1 | export interface ITerminal { |
| 2 | readonly cols?: number; |
| 3 | readonly rows?: number; |
| 4 | |
| 5 | reset: () => void; |
| 6 | write: (data: string) => void; |
| 7 | onData: (cb: (data: string) => void) => void; |
| 8 | } |
nothing calls this directly
no outgoing calls
no test coverage detected