Interface GetConfigOptions

Information needed to set up a client.

interface GetConfigOptions {
    hostname: string;
    token?: string;
}

Properties

Properties

hostname: string

The host to send requests to.

token?: string

Optional authorization token.

The client will not be able to do authorized requests when not passed.