()
| 394 | * what 'auto' actually resolves to given the current environment. |
| 395 | */ |
| 396 | export function getResolvedTeammateMode(): 'in-process' | 'tmux' { |
| 397 | return isInProcessEnabled() ? 'in-process' : 'tmux' |
| 398 | } |
| 399 | |
| 400 | /** |
| 401 | * Gets the InProcessBackend instance. |
no test coverage detected