Interface ConnectConfig

interface ConnectConfig {
    host: string;
    hostHash?: string;
    hostVerifier?: (key: string | Buffer<ArrayBufferLike>) => boolean;
    passphrase?: string;
    password?: string;
    port?: number;
    privateKey?: string | Buffer<ArrayBufferLike>;
    username: string;
}

Properties

host: string
hostHash?: string
hostVerifier?: (key: string | Buffer<ArrayBufferLike>) => boolean
passphrase?: string
password?: string
port?: number
privateKey?: string | Buffer<ArrayBufferLike>
username: string