/// /// CameraOrientation.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 "CameraOrientation". */ @DoNotStrip @Keep enum class CameraOrientation(@DoNotStrip @Keep val value: Int) { UP(0), RIGHT(1), DOWN(2), LEFT(3); companion object }