iop
Version:
Ship Docker Anywhere
8 lines (7 loc) • 393 B
TypeScript
import { IopConfig, IopSecrets } from "../config/types";
import { SSHClientOptions } from "./index";
/**
* Get SSH credentials for connecting to a server.
* This function handles credentials consistently across all commands.
*/
export declare function getSSHCredentials(serverHostname: string, config: IopConfig, secrets: IopSecrets, verbose?: boolean): Promise<Partial<SSHClientOptions>>;