Options for configuring the ApiClient.

interface ApiClientOptions {
    timeout?: number;
    url: string;
}

Properties

Properties

timeout?: number

Optional timeout in milliseconds for RPC calls (default: 30000).

url: string

The base URL of the gRPC web server (e.g., "http://localhost:5001").