procon-ip - v2.0.0
    Preparing search index...

    Interface IServiceConfig

    interface IServiceConfig {
        basicAuth: boolean;
        controllerUrl: string;
        password?: string;
        requestHeaders?: Record<string, string>;
        timeout: number;
        username?: string;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown

      Forward-compatible escape hatch for ad-hoc config keys.

    Index

    Properties

    basicAuth: boolean

    Enable HTTP basic auth (uses username and password).

    controllerUrl: string

    Controller base URL (e.g. "http://192.168.2.3"). Trailing slash optional.

    password?: string

    Optional basic-auth password.

    requestHeaders?: Record<string, string>

    Optional extra headers merged into every request.

    timeout: number

    Per-request timeout in milliseconds.

    username?: string

    Optional basic-auth username.