/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ package com.facebook.react.uimanager.events import android.view.KeyEvent as AndroidKeyEvent internal class KeyDownEvent( surfaceId: Int, viewTag: Int, keyEvent: AndroidKeyEvent, ) : KeyEvent(surfaceId, viewTag, keyEvent) { override fun getEventName(): String = EVENT_NAME companion object { private const val EVENT_NAME: String = "topKeyDown" } }