/// /// TargetStabilizationMode.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 "TargetStabilizationMode". */ @DoNotStrip @Keep enum class TargetStabilizationMode(@DoNotStrip @Keep val value: Int) { OFF(0), AUTO(1), STANDARD(2), CINEMATIC(3), CINEMATIC_EXTENDED(4), PREVIEW_OPTIMIZED(5), CINEMATIC_EXTENDED_ENHANCED(6), LOW_LATENCY(7); companion object }