/// /// ModalPresentationStyle.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 "ModalPresentationStyle". */ @DoNotStrip @Keep enum class ModalPresentationStyle(@DoNotStrip @Keep val value: Int) { AUTOMATIC(0), NONE(1), FULLSCREEN(2), PAGESHEET(3), FORMSHEET(4), CURRENTCONTEXT(5), CUSTOM(6), OVERFULLSCREEN(7), OVERCURRENTCONTEXT(8), POPOVER(9); companion object }