/// /// ScanMode.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.munimbluetooth import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "ScanMode". */ @DoNotStrip @Keep enum class ScanMode(@DoNotStrip @Keep val value: Int) { LOWPOWER(0), BALANCED(1), LOWLATENCY(2); companion object }