/// /// ExposureMode.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.camera import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "ExposureMode". */ @DoNotStrip @Keep enum class ExposureMode(@DoNotStrip @Keep val value: Int) { LOCKED(0), AUTO_EXPOSURE(1), CONTINUOUS_AUTO_EXPOSURE(2), CUSTOM(3); companion object }