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