UNPKG

@trlogic/tracker-web

Version:
9 lines (8 loc) 272 B
import { NativeEventData } from "src/core/model/NativeEventData"; /** * Callback interface for receiving native event notifications. * Mirrors Android NativeEventListener. */ export interface NativeEventListener { onNativeEvent(eventData: NativeEventData): void; }