// // Created by Marc Rousavy on 22.06.21. // #pragma once #include #include #include namespace vision { using namespace facebook; namespace JSIJNIConversion { jobject convertJSIValueToJNIObject(jsi::Runtime& runtime, const jsi::Value& value); // NOLINT(runtime/references) jsi::Value convertJNIObjectToJSIValue(jsi::Runtime& runtime, const jni::local_ref& object); // NOLINT(runtime/references) }; } // namespace vision