Copy a local file or directory into the guest (recursive for directories).
(localPath: string, remotePath: string)
| 34 | ssh(command: string): Promise<SshResult>; |
| 35 | /** Copy a local file or directory into the guest (recursive for directories). */ |
| 36 | push(localPath: string, remotePath: string): Promise<void>; |
| 37 | /** Reboot the guest OS; resolves only once SSH is reachable again. */ |
| 38 | reboot(): Promise<void>; |
| 39 | /** Forward `localhost:<localPort>` → `guest:<guestPort>` over SSH. */ |
no outgoing calls