/// /// KeyEventData.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © 2025 Marc Rousavy @ Margelo /// package com.margelo.nitro.keyevent import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip import com.margelo.nitro.core.* /** * Represents the JavaScript object/struct "KeyEventData". */ @DoNotStrip @Keep data class KeyEventData @DoNotStrip @Keep constructor( @DoNotStrip @Keep val keyCode: Double, @DoNotStrip @Keep val action: Double, @DoNotStrip @Keep val pressedKey: String, @DoNotStrip @Keep val repeatCount: Double? ) { /* main constructor */ }