| 31 | const encoder = new TextEncoder(); |
| 32 | |
| 33 | export interface SshCommandResult { |
| 34 | readonly stdout: string; |
| 35 | readonly stderr: string; |
| 36 | } |
| 37 | |
| 38 | export interface RunSshCommandOptions extends SshAuthOptions { |
| 39 | readonly preHostArgs?: ReadonlyArray<string>; |
nothing calls this directly
no outgoing calls
no test coverage detected