( paneId: string, command: string, useSwarmSocket = false, )
| 98 | * Delegates to the detected backend. |
| 99 | */ |
| 100 | export async function sendCommandToPane( |
| 101 | paneId: string, |
| 102 | command: string, |
| 103 | useSwarmSocket = false, |
| 104 | ): Promise<void> { |
| 105 | const backend = await getBackend() |
| 106 | return backend.sendCommandToPane(paneId, command, useSwarmSocket) |
| 107 | } |
| 108 |
no test coverage detected