Interface ServerClientOptions

interface ServerClientOptions {
    authorization: string;
    compress?: boolean;
    handshake?: boolean;
    host?: string;
    maxRetryTime?: number;
    messagepack?: boolean;
    options?: ConnectOpts | ConnectionOptions;
    path?: string;
    port?: number;
    reconnect?: boolean;
    retries?: number;
    tls?: boolean;
    type?: string;
}

Hierarchy

  • ClientOptions
    • ServerClientOptions

Properties

authorization: string

Client authorization token.

compress?: boolean
handshake?: boolean
host?: string
maxRetryTime?: number
messagepack?: boolean
options?: ConnectOpts | ConnectionOptions
path?: string
port?: number
reconnect?: boolean
retries?: number
tls?: boolean
type?: string

Client type.

Generated using TypeDoc