()
| 41 | * Return the singleton TerminalPanel, creating it lazily on first use. |
| 42 | */ |
| 43 | export function getTerminalPanel(): TerminalPanel { |
| 44 | if (!instance) { |
| 45 | instance = new TerminalPanel() |
| 46 | } |
| 47 | return instance |
| 48 | } |
| 49 | |
| 50 | class TerminalPanel { |
| 51 | private hasTmux: boolean | undefined |
no outgoing calls
no test coverage detected