/// /// ImpactFeedbackStyle.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.haptics import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "ImpactFeedbackStyle". */ @DoNotStrip @Keep enum class ImpactFeedbackStyle(@DoNotStrip @Keep val value: Int) { LIGHT(0), MEDIUM(1), HEAVY(2), SOFT(3), RIGID(4); companion object }