Forward `localhost: ` → `guest: ` over SSH.
(guestPort: number)
| 38 | reboot(): Promise<void>; |
| 39 | /** Forward `localhost:<localPort>` → `guest:<guestPort>` over SSH. */ |
| 40 | tunnel(guestPort: number): Promise<Tunnel>; |
| 41 | /** Discard the VM (delete the tart clone / terminate the EC2 instance). */ |
| 42 | discard(): Promise<void>; |
| 43 | } |