Preparing search index...

    Interface RadarsResponse

    The GET /radars response: the API version plus the discovered radars keyed by radar ID.

    {
    "version": "3.4.0",
    "radars": {
    "nav1034A": { "name": "HALO 034A", "brand": "Navico", "radarIpAddress": "192.168.1.50" }
    }
    }
    interface RadarsResponse {
        radars: Record<string, RadarInfo>;
        version: string;
    }
    Index
    radars: Record<string, RadarInfo>

    Discovered radars, keyed by radar ID

    version: string

    Radar API version (semver) this response conforms to