hivessh
Version:
HiveSsh is an innovative library designed to streamline SSH2 connections and simplify task execution on Linux servers.
6 lines • 547 B
TypeScript
import { ClientChannel, Client as SshClient } from "ssh2";
import { HopHostSettings, SshHostBaseSettings } from "./SshHostOptions.js";
export declare function createClient(settings: HopHostSettings): Promise<SshClient>;
export declare function createForward(ssh: SshClient, srcHost: string, srcPort: number, targetHost: string, targetPort: number): Promise<ClientChannel>;
export declare function handleHops(settings: SshHostBaseSettings, defaultSrcHost?: string, defaultSrcPort?: number): Promise<SshClient>;
//# sourceMappingURL=HostHop.d.ts.map