/* * 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.internal.interop import com.facebook.react.bridge.WritableMap import com.facebook.react.uimanager.events.Event /** * An [Event] class used by the [InteropEventEmitter]. This class is just holding the event name and * the data which is received by the `receiveEvent` method and will be passed over the the * [com.facebook.react.uimanager.events.EventDispatcher] */ public class InteropEvent( @get:JvmName("eventName") public val eventName: String, @get:JvmName("eventData") public val eventData: WritableMap?, surfaceId: Int, viewTag: Int ) : Event(surfaceId, viewTag) { override fun getEventName(): String = eventName override fun getEventData(): WritableMap? = eventData }