Interface IProxyConfig

interface IProxyConfig {
    checkInterval?: number;
    clients: IClientOption[];
    name: string;
    retry?: number;
    server: {
        address: ListenOptions;
        options?: ServerOpts;
    };
    timeout?: number;
}

Hierarchy (view full)

Properties

checkInterval?: number
clients: IClientOption[]
name: string
retry?: number
server: {
    address: ListenOptions;
    options?: ServerOpts;
}

Type declaration

  • address: ListenOptions
  • Optional options?: ServerOpts
timeout?: number