interface Upgrader {
    upgradeInbound(maConn, opts?): Promise<Connection>;
    upgradeOutbound(maConn, opts?): Promise<Connection>;
}

Methods