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