Network | Firebolt

Network Schema


Version 0.1.0-alpha.4

JSON-Schema

This document was generated from a JSON-Schema, and is intended to provide a human readable overview and examples of the methods contained in the module.

For the full schema, see the link below.

Schema
network.json

Table of Contents

Schemas

NetworkType

type NetworkType = 'wifi' | 'ethernet' | 'none'
Examples

Details

Type of Network connected to the device.


NetworkStatus

type NetworkStatus = {
  connection?: boolean     // Connection status to the router.
  interface?: NetworkType  // Type of Network connected to the device.
}
Examples

Details

Current Network status of the device.


Go To Top