(type: BackendType)
| 307 | * Type guard to check if a backend type uses terminal panes. |
| 308 | */ |
| 309 | export function isPaneBackend(type: BackendType): type is 'tmux' | 'iterm2' { |
| 310 | return type === 'tmux' || type === 'iterm2' |
| 311 | } |
| 312 |
no outgoing calls
no test coverage detected