Interface RemoteSSHConnectionProvider

interface RemoteSSHConnectionProvider {
    establishConnection(options): Promise<string>;
    getSSHConfig(customConfigFile?): Promise<SSHConfig>;
    matchSSHConfigHost(host, user?, customConfigFile?): Promise<undefined | Record<string, string | string[]>>;
}

Implemented by

Methods