Interface TunnelSSHOptions

Interface for SSH Tunnel options

interface TunnelSSHOptions {
    host: string;
    localhost?: string;
    passphrase?: string;
    port: number;
    privateKey: string;
    username: string;
}

Properties

host: string
localhost?: string
passphrase?: string
port: number
privateKey: string
username: string