kaios-types
    Preparing search index...

    Interface MozMobileConnectionInfo

    dom.mobileconnection.enabled

    interface MozMobileConnectionInfo {
        cell: MozMobileCellInfo | null;
        connected: boolean;
        emergencyCallsOnly: boolean;
        network: MozMobileNetworkInfo | null;
        relSignalStrength: number | null;
        roaming: boolean;
        signalStrength: number | null;
        state: MobileConnectionState | null;
        type: MobileConnectionType | null;
    }
    Index

    Properties

    cell: MozMobileCellInfo | null

    Information about the cell the device is connected to.

    connected: boolean

    Indicates whether the device is connected to a network.

    emergencyCallsOnly: boolean

    Indicates whether only emergency calls are allowed.

    network: MozMobileNetworkInfo | null

    Information about the network the device is connected to.

    relSignalStrength: number | null

    The relative signal strength (0-100).

    roaming: boolean

    Indicates whether the device is roaming.

    signalStrength: number | null

    The signal strength in dBm.

    state: MobileConnectionState | null

    The state of the connection (e.g., "registered", "searching").

    The type of the connection (e.g., "gsm", "lte").