/// /// BLEState.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © Marc Rousavy @ Margelo /// package com.margelo.nitro.co.zyke.ble import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "BLEState". */ @DoNotStrip @Keep enum class BLEState(@DoNotStrip @Keep val value: Int) { UNKNOWN(0), RESETTING(1), UNSUPPORTED(2), UNAUTHORIZED(3), POWEREDOFF(4), POWEREDON(5); companion object }