Helpful
    Preparing search index...

    Represents an abstract server connection.

    interface IZServer {
        address: string;
        password?: string;
        port?: number;
        username?: string;
    }
    Index

    Properties

    address: string

    The host or ip address to connect to.

    Does not distinguish between the protocol and hostname.

    password?: string

    The user's password to connect with.

    If username is not supplied, then this generally has no meaning.

    port?: number

    The optional port to connect on.

    If this is falsy, then it is up to the implementation taking this object to properly default the value.

    username?: string

    The optional username.

    Falsy usually implies guest access.