package com.mjstudio.reactnativenavermap import android.view.View import com.facebook.react.uimanager.SimpleViewManager import com.facebook.react.uimanager.ViewManagerDelegate import com.facebook.react.viewmanagers.RNCNaverMapArrowheadPathManagerDelegate import com.facebook.react.viewmanagers.RNCNaverMapArrowheadPathManagerInterface abstract class RNCNaverMapArrowheadPathManagerSpec : SimpleViewManager(), RNCNaverMapArrowheadPathManagerInterface { private val mDelegate: ViewManagerDelegate = RNCNaverMapArrowheadPathManagerDelegate(this) override fun getDelegate(): ViewManagerDelegate? = mDelegate }