react-native-nitro-modules 0.33.2 → 0.33.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/android/CMakeLists.txt +1 -0
  2. package/android/src/main/cpp/JNIOnLoad.cpp +2 -0
  3. package/android/src/main/cpp/platform/ThreadUtils.cpp +17 -17
  4. package/android/src/main/cpp/threading/UIThreadDispatcher.cpp +21 -0
  5. package/android/src/main/cpp/threading/UIThreadDispatcher.hpp +14 -0
  6. package/android/src/main/cpp/utils/JNativeRunnable.hpp +32 -0
  7. package/android/src/main/cpp/utils/JThreadUtils.hpp +39 -0
  8. package/android/src/main/java/com/margelo/nitro/utils/NativeRunnable.kt +18 -0
  9. package/android/src/main/java/com/margelo/nitro/utils/ThreadUtils.kt +43 -0
  10. package/cpp/core/HybridObject.cpp +4 -2
  11. package/cpp/jsi/JSIConverter+AnyMap.hpp +1 -1
  12. package/cpp/jsi/JSIConverter+ArrayBuffer.hpp +5 -2
  13. package/cpp/jsi/JSIConverter+Function.hpp +6 -2
  14. package/cpp/platform/ThreadUtils.hpp +13 -0
  15. package/cpp/prototype/HybridObjectPrototype.cpp +5 -2
  16. package/cpp/threading/Dispatcher.cpp +6 -0
  17. package/cpp/utils/CommonGlobals.cpp +5 -2
  18. package/cpp/utils/NitroDefines.hpp +1 -1
  19. package/cpp/views/CachedProp.hpp +5 -2
  20. package/ios/core/AnyMap.swift +0 -2
  21. package/ios/core/HybridObject.swift +0 -2
  22. package/ios/core/Null.swift +0 -2
  23. package/ios/core/Promise.swift +0 -2
  24. package/ios/core/RuntimeError.swift +0 -2
  25. package/ios/platform/ThreadUtils.cpp +9 -0
  26. package/ios/threading/UIThreadDispatcher.cpp +19 -0
  27. package/ios/threading/UIThreadDispatcher.hpp +19 -0
  28. package/ios/utils/MemoryHelper.swift +0 -2
  29. package/ios/utils/SwiftClosure.swift +0 -2
  30. package/ios/views/HybridView.swift +0 -1
  31. package/ios/views/RecyclableView.swift +0 -2
  32. package/lib/commonjs/views/getHostComponent.js +7 -2
  33. package/lib/commonjs/views/getHostComponent.js.map +1 -1
  34. package/lib/module/views/getHostComponent.js +6 -2
  35. package/lib/module/views/getHostComponent.js.map +1 -1
  36. package/lib/tsconfig.build.tsbuildinfo +1 -1
  37. package/lib/typescript/views/getHostComponent.d.ts.map +1 -1
  38. package/package.json +3 -3
  39. package/src/views/getHostComponent.ts +10 -2
@@ -38,6 +38,7 @@ include_directories(
38
38
  src/main/cpp/registry
39
39
  src/main/cpp/turbomodule
40
40
  src/main/cpp/platform
41
+ src/main/cpp/threading
41
42
  src/main/cpp/utils
42
43
  src/main/cpp/views
43
44
  )
@@ -4,6 +4,7 @@
4
4
  #include "JAnyValue.hpp"
5
5
  #include "JArrayBuffer.hpp"
6
6
  #include "JHardwareBufferUtils.hpp"
7
+ #include "JNativeRunnable.hpp"
7
8
  #include "JNitroModules.hpp"
8
9
  #include "JPromise.hpp"
9
10
  #include <fbjni/fbjni.h>
@@ -19,6 +20,7 @@ JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM* vm, void*) {
19
20
  JAnyValue::registerNatives();
20
21
  JHardwareBufferUtils::registerNatives();
21
22
  JPromise::registerNatives();
23
+ JNativeRunnable::registerNatives();
22
24
 
23
25
  // 2. Initialize the React Native TurboModule C++ part
24
26
  JNitroModules::registerNatives();
@@ -6,6 +6,8 @@
6
6
  //
7
7
 
8
8
  #include "ThreadUtils.hpp"
9
+ #include "JThreadUtils.hpp"
10
+ #include "UIThreadDispatcher.hpp"
9
11
  #include <pthread.h>
10
12
  #include <sstream>
11
13
  #include <string>
@@ -14,27 +16,25 @@
14
16
 
15
17
  namespace margelo::nitro {
16
18
 
19
+ using namespace facebook;
20
+
21
+ // Implementation for the C++ shared `ThreadUtils` class
17
22
  std::string ThreadUtils::getThreadName() {
18
- #ifdef HAVE_ANDROID_PTHREAD_SETNAME_NP
19
- // Try using pthread APIs
20
- pthread_t thisThread = pthread_self();
21
- char threadName[16]; // Thread name length limit in Android is 16 characters
22
-
23
- int result = pthread_getname_np(thisThread, threadName, sizeof(threadName));
24
- if (result == 0) {
25
- return std::string(threadName);
26
- }
27
- #endif
28
-
29
- // Fall back to this_thread ID
30
- std::stringstream stream;
31
- stream << std::this_thread::get_id();
32
- std::string threadId = stream.str();
33
- return "Thread #" + threadId;
23
+ auto name = JThreadUtils::getCurrentThreadName();
24
+ return name->toStdString();
34
25
  }
35
26
 
36
27
  void ThreadUtils::setThreadName(const std::string& name) {
37
- prctl(PR_SET_NAME, name.c_str(), 0, 0, 0);
28
+ auto jName = jni::make_jstring(name);
29
+ JThreadUtils::setCurrentThreadName(jName);
30
+ }
31
+
32
+ bool ThreadUtils::isUIThread() {
33
+ return JThreadUtils::isOnUIThread();
34
+ }
35
+
36
+ std::shared_ptr<Dispatcher> ThreadUtils::createUIThreadDispatcher() {
37
+ return std::make_shared<UIThreadDispatcher>();
38
38
  }
39
39
 
40
40
  } // namespace margelo::nitro
@@ -0,0 +1,21 @@
1
+ //
2
+ // Created by Marc Rousavy on 29.01.26.
3
+ //
4
+
5
+ #include "UIThreadDispatcher.hpp"
6
+ #include "JNativeRunnable.hpp"
7
+ #include "JThreadUtils.hpp"
8
+ #include <fbjni/fbjni.h>
9
+
10
+ namespace margelo::nitro {
11
+ using namespace facebook;
12
+
13
+ void UIThreadDispatcher::runAsync(std::function<void()>&& function) {
14
+ auto runnable = JNativeRunnable::newObjectCxxArgs(std::move(function));
15
+ JThreadUtils::runOnUIThread(runnable);
16
+ }
17
+
18
+ void UIThreadDispatcher::runSync(std::function<void()>&&) {
19
+ throw std::runtime_error("UIThreadDispatcher::runSync() is not implemented!");
20
+ }
21
+ } // namespace margelo::nitro
@@ -0,0 +1,14 @@
1
+
2
+ #pragma once
3
+
4
+ #include "Dispatcher.hpp"
5
+
6
+ namespace margelo::nitro {
7
+
8
+ class UIThreadDispatcher : public Dispatcher {
9
+ public:
10
+ void runSync(std::function<void()>&& function) override;
11
+ void runAsync(std::function<void()>&& function) override;
12
+ };
13
+
14
+ } // namespace margelo::nitro
@@ -0,0 +1,32 @@
1
+ //
2
+ // Created by Marc Rousavy on 29.01.26.
3
+ //
4
+
5
+ #pragma once
6
+
7
+ #include <fbjni/fbjni.h>
8
+
9
+ namespace margelo::nitro {
10
+
11
+ using namespace facebook;
12
+
13
+ class JNativeRunnable : public jni::HybridClass<JNativeRunnable> {
14
+ public:
15
+ explicit JNativeRunnable(std::function<void()>&& func) : _func(std::move(func)) {}
16
+
17
+ void run() {
18
+ _func();
19
+ }
20
+
21
+ public:
22
+ static auto constexpr kJavaDescriptor = "Lcom/margelo/nitro/utils/NativeRunnable;";
23
+ static void registerNatives() {
24
+ registerHybrid({makeNativeMethod("run", JNativeRunnable::run)});
25
+ }
26
+
27
+ private:
28
+ friend HybridBase;
29
+ std::function<void()> _func;
30
+ };
31
+
32
+ } // namespace margelo::nitro
@@ -0,0 +1,39 @@
1
+ //
2
+ // JThreadUtils.hpp
3
+ // react-native-nitro
4
+ //
5
+ // Created by Marc Rousavy on 14.07.24.
6
+ //
7
+
8
+ #include "JNativeRunnable.hpp"
9
+ #include <fbjni/fbjni.h>
10
+ #include <string>
11
+
12
+ namespace margelo::nitro {
13
+
14
+ using namespace facebook;
15
+
16
+ // Bridged to Java
17
+ class JThreadUtils : public jni::JavaClass<JThreadUtils> {
18
+ public:
19
+ static auto constexpr kJavaDescriptor = "Lcom/margelo/nitro/utils/ThreadUtils;";
20
+
21
+ static jni::local_ref<jni::JString> getCurrentThreadName() {
22
+ static auto method = javaClassStatic()->getStaticMethod<jni::local_ref<jni::JString>()>("getCurrentThreadName");
23
+ return method(javaClassStatic());
24
+ }
25
+ static void setCurrentThreadName(jni::alias_ref<jni::JString> name) {
26
+ static auto method = javaClassStatic()->getStaticMethod<void(jni::alias_ref<jni::JString>)>("setCurrentThreadName");
27
+ method(javaClassStatic(), name);
28
+ }
29
+ static jboolean isOnUIThread() {
30
+ static auto method = javaClassStatic()->getStaticMethod<jboolean()>("isOnUIThread");
31
+ return method(javaClassStatic());
32
+ }
33
+ static void runOnUIThread(jni::alias_ref<JNativeRunnable::javaobject> runnable) {
34
+ static auto method = javaClassStatic()->getStaticMethod<void(jni::alias_ref<JNativeRunnable::javaobject>)>("runOnUIThread");
35
+ method(javaClassStatic(), runnable);
36
+ }
37
+ };
38
+
39
+ } // namespace margelo::nitro
@@ -0,0 +1,18 @@
1
+ package com.margelo.nitro.utils
2
+
3
+ import androidx.annotation.Keep
4
+ import com.facebook.jni.HybridData
5
+ import com.facebook.proguard.annotations.DoNotStrip
6
+
7
+ @Suppress("unused", "KotlinJniMissingFunction")
8
+ @DoNotStrip
9
+ @Keep
10
+ class NativeRunnable : Runnable {
11
+ private var mHybridData: HybridData
12
+
13
+ private constructor(hybridData: HybridData) {
14
+ mHybridData = hybridData
15
+ }
16
+
17
+ external override fun run()
18
+ }
@@ -0,0 +1,43 @@
1
+ package com.margelo.nitro.utils
2
+
3
+ import android.os.Handler
4
+ import android.os.Looper
5
+ import androidx.annotation.Keep
6
+ import com.facebook.proguard.annotations.DoNotStrip
7
+
8
+ @Suppress("unused")
9
+ @Keep
10
+ @DoNotStrip
11
+ class ThreadUtils {
12
+ companion object {
13
+ private val handler = Handler(Looper.getMainLooper())
14
+
15
+ @JvmStatic
16
+ @Keep
17
+ @DoNotStrip
18
+ fun getCurrentThreadName(): String {
19
+ return Thread.currentThread().name
20
+ }
21
+
22
+ @JvmStatic
23
+ @Keep
24
+ @DoNotStrip
25
+ fun setCurrentThreadName(name: String) {
26
+ Thread.currentThread().name = name
27
+ }
28
+
29
+ @JvmStatic
30
+ @Keep
31
+ @DoNotStrip
32
+ fun isOnUIThread(): Boolean {
33
+ return Looper.myLooper() == Looper.getMainLooper()
34
+ }
35
+
36
+ @JvmStatic
37
+ @Keep
38
+ @DoNotStrip
39
+ fun runOnUIThread(runnable: Runnable) {
40
+ handler.post(runnable)
41
+ }
42
+ }
43
+ }
@@ -97,8 +97,10 @@ jsi::Value HybridObject::toObject(jsi::Runtime& runtime) {
97
97
  #endif
98
98
 
99
99
  // 7. Throw a jsi::WeakObject pointing to our object into cache so subsequent calls can use it from cache
100
- JSICacheReference cache = JSICache::getOrCreateCache(runtime);
101
- _objectCache[&runtime] = cache.makeShared(jsi::WeakObject(runtime, object));
100
+ {
101
+ JSICacheReference cache = JSICache::getOrCreateCache(runtime);
102
+ _objectCache[&runtime] = cache.makeShared(jsi::WeakObject(runtime, object));
103
+ }
102
104
 
103
105
  // 8. Return it!
104
106
  return object;
@@ -47,7 +47,7 @@ struct JSIConverter<std::shared_ptr<AnyMap>> final {
47
47
  jsi::Object object = arg.asObject(runtime);
48
48
  jsi::Array propNames = object.getPropertyNames(runtime);
49
49
  size_t size = propNames.size(runtime);
50
- std::shared_ptr<AnyMap> map = AnyMap::make();
50
+ std::shared_ptr<AnyMap> map = AnyMap::make(size);
51
51
  for (size_t i = 0; i < size; i++) {
52
52
  std::string jsKey = propNames.getValueAtIndex(runtime, i).getString(runtime).utf8(runtime);
53
53
  jsi::Value jsValue = object.getProperty(runtime, PropNameIDCache::get(runtime, jsKey));
@@ -62,8 +62,11 @@ struct JSIConverter<T, std::enable_if_t<is_shared_ptr_to_v<T, jsi::MutableBuffer
62
62
  }
63
63
  }
64
64
 
65
- JSICacheReference cache = JSICache::getOrCreateCache(runtime);
66
- auto borrowingArrayBuffer = cache.makeShared(object.getArrayBuffer(runtime));
65
+ BorrowingReference<jsi::ArrayBuffer> borrowingArrayBuffer;
66
+ {
67
+ JSICacheReference cache = JSICache::getOrCreateCache(runtime);
68
+ borrowingArrayBuffer = cache.makeShared(object.getArrayBuffer(runtime));
69
+ }
67
70
 
68
71
  return std::make_shared<JSArrayBuffer>(runtime, borrowingArrayBuffer);
69
72
  }
@@ -33,9 +33,13 @@ struct JSIConverter<std::function<R(Args...)>> final {
33
33
 
34
34
  static inline std::function<R(Args...)> fromJSI(jsi::Runtime& runtime, const jsi::Value& arg) {
35
35
  // Make function global - it'll be managed by the Runtime's memory, and we only have a weak_ref to it.
36
- auto cache = JSICache::getOrCreateCache(runtime);
37
36
  jsi::Function function = arg.asObject(runtime).asFunction(runtime);
38
- BorrowingReference<jsi::Function> sharedFunction = cache.makeShared(std::move(function));
37
+ BorrowingReference<jsi::Function> sharedFunction;
38
+ {
39
+ // JSICache RAII should live as short as possible
40
+ JSICacheReference cache = JSICache::getOrCreateCache(runtime);
41
+ sharedFunction = cache.makeShared(std::move(function));
42
+ }
39
43
  SyncJSCallback<ActualR(Args...)> callback(runtime, std::move(sharedFunction));
40
44
 
41
45
  if constexpr (isAsync) {
@@ -7,6 +7,8 @@
7
7
 
8
8
  #pragma once
9
9
 
10
+ #include "Dispatcher.hpp"
11
+ #include <memory>
10
12
  #include <string>
11
13
 
12
14
  namespace margelo::nitro {
@@ -26,6 +28,17 @@ public:
26
28
  * This is implemented differently on iOS and Android.
27
29
  */
28
30
  static void setThreadName(const std::string& name);
31
+
32
+ /**
33
+ * Gets whether the caller is currently running
34
+ * on the Main/UI Thread.
35
+ */
36
+ static bool isUIThread();
37
+
38
+ /**
39
+ * Create a `Dispatcher` for the Main/UI Thread.
40
+ */
41
+ static std::shared_ptr<Dispatcher> createUIThreadDispatcher();
29
42
  };
30
43
 
31
44
  } // namespace margelo::nitro
@@ -94,8 +94,11 @@ jsi::Value HybridObjectPrototype::createPrototype(jsi::Runtime& runtime, const s
94
94
  #endif
95
95
 
96
96
  // 8. Throw it into our cache so the next lookup can be cached and therefore faster
97
- JSICacheReference jsiCache = JSICache::getOrCreateCache(runtime);
98
- BorrowingReference<jsi::Object> sharedObject = jsiCache.makeShared(std::move(object));
97
+ BorrowingReference<jsi::Object> sharedObject;
98
+ {
99
+ JSICacheReference jsiCache = JSICache::getOrCreateCache(runtime);
100
+ sharedObject = jsiCache.makeShared(std::move(object));
101
+ }
99
102
  const NativeInstanceId& instanceId = prototype->getNativeInstanceId();
100
103
  prototypeCache[instanceId] = sharedObject;
101
104
 
@@ -45,6 +45,12 @@ std::shared_ptr<Dispatcher> Dispatcher::getRuntimeGlobalDispatcher(jsi::Runtime&
45
45
  }
46
46
  }
47
47
 
48
+ // If it's the main/UI Thread, we can inject the Dispatcher now
49
+ if (ThreadUtils::isUIThread()) {
50
+ auto uiDispatcher = ThreadUtils::createUIThreadDispatcher();
51
+ Dispatcher::installRuntimeGlobalDispatcher(runtime, uiDispatcher);
52
+ }
53
+
48
54
  Logger::log(LogLevel::Warning, TAG, "Unknown Runtime (%s), looking for Dispatcher through JSI global lookup...",
49
55
  getRuntimeId(runtime).c_str());
50
56
  // 1. Get global.__nitroDispatcher
@@ -204,8 +204,11 @@ const jsi::Function& CommonGlobals::getGlobalFunction(jsi::Runtime& runtime, con
204
204
  jsi::Function function = getFunction(runtime);
205
205
 
206
206
  // Let's throw it in cache!
207
- JSICacheReference jsiCache = JSICache::getOrCreateCache(runtime);
208
- BorrowingReference<jsi::Function> sharedFunction = jsiCache.makeShared(std::move(function));
207
+ BorrowingReference<jsi::Function> sharedFunction;
208
+ {
209
+ JSICacheReference jsiCache = JSICache::getOrCreateCache(runtime);
210
+ sharedFunction = jsiCache.makeShared(std::move(function));
211
+ }
209
212
  functionCache[stringKey] = sharedFunction;
210
213
 
211
214
  // And now return:
@@ -9,7 +9,7 @@
9
9
  #define NitroDefines_h
10
10
 
11
11
  // Sets the version of the native Nitro core library
12
- #define NITRO_VERSION "0.33.2"
12
+ #define NITRO_VERSION "0.33.3"
13
13
 
14
14
  // Sets whether to use debug or optimized production build flags
15
15
  #ifdef DEBUG
@@ -35,8 +35,11 @@ public:
35
35
  return oldProp;
36
36
  }
37
37
  T converted = JSIConverter<T>::fromJSI(runtime, value);
38
- JSICacheReference cache = JSICache::getOrCreateCache(runtime);
39
- BorrowingReference<jsi::Value> cached = cache.makeShared(jsi::Value(runtime, value));
38
+ BorrowingReference<jsi::Value> cached;
39
+ {
40
+ JSICacheReference cache = JSICache::getOrCreateCache(runtime);
41
+ cached = cache.makeShared(jsi::Value(runtime, value));
42
+ }
40
43
  return CachedProp<T>(std::move(converted), std::move(cached), /* isDirty */ true);
41
44
  }
42
45
  };
@@ -5,8 +5,6 @@
5
5
  // Created by Marc Rousavy on 20.08.24.
6
6
  //
7
7
 
8
- import Foundation
9
-
10
8
  /// Represents any value representable by the `AnyMap`.
11
9
  /// Note: Arrays are currently not implemented due to a Swift compiler bug https://github.com/swiftlang/swift/issues/75994
12
10
  public indirect enum AnyValue {
@@ -5,8 +5,6 @@
5
5
  // Created by Marc Rousavy on 23.07.24.
6
6
  //
7
7
 
8
- import Foundation
9
-
10
8
  /// A base protocol for all Swift-based Hybrid Objects.
11
9
  public protocol HybridObject: AnyObject {
12
10
  /**
@@ -5,8 +5,6 @@
5
5
  // Created by Marc Rousavy on 10.11.25
6
6
  //
7
7
 
8
- import Foundation
9
-
10
8
  @frozen
11
9
  public enum NullType: Sendable, Equatable, Hashable {
12
10
  /**
@@ -5,8 +5,6 @@
5
5
  // Created by Marc Rousavy on 15.08.24.
6
6
  //
7
7
 
8
- import Foundation
9
-
10
8
  /// Represents a Promise that can be passed to JS.
11
9
  ///
12
10
  /// Create a new Promise with the following APIs:
@@ -5,8 +5,6 @@
5
5
  // Created by Marc Rousavy on 17.07.24.
6
6
  //
7
7
 
8
- import Foundation
9
-
10
8
  /// Represents an error that occured at any point during the application's runtime.
11
9
  ///
12
10
  /// Throw this error in Nitro Modules to provide clear and concise error messages to JS.
@@ -6,6 +6,7 @@
6
6
  //
7
7
 
8
8
  #include "ThreadUtils.hpp"
9
+ #include "UIThreadDispatcher.hpp"
9
10
  #include <dispatch/dispatch.h>
10
11
  #include <pthread.h>
11
12
  #include <sstream>
@@ -40,4 +41,12 @@ void ThreadUtils::setThreadName(const std::string& name) {
40
41
  pthread_setname_np(name.c_str());
41
42
  }
42
43
 
44
+ bool ThreadUtils::isUIThread() {
45
+ return pthread_main_np() != 0;
46
+ }
47
+
48
+ std::shared_ptr<Dispatcher> ThreadUtils::createUIThreadDispatcher() {
49
+ return std::make_shared<UIThreadDispatcher>();
50
+ }
51
+
43
52
  } // namespace margelo::nitro
@@ -0,0 +1,19 @@
1
+ #include "UIThreadDispatcher.hpp"
2
+
3
+ namespace margelo::nitro {
4
+
5
+ UIThreadDispatcher::UIThreadDispatcher() : _queue(dispatch_get_main_queue()) {}
6
+
7
+ void UIThreadDispatcher::runSync(std::function<void()>&& function) {
8
+ throw std::runtime_error("UIThreadDispatcher::runSync() is not implemented!");
9
+ }
10
+
11
+ void UIThreadDispatcher::runAsync(std::function<void()>&& function) {
12
+ std::function<void()>* funcHeap = new std::function<void()>(std::move(function));
13
+ dispatch_async(_queue, ^{
14
+ (*funcHeap)();
15
+ delete funcHeap;
16
+ });
17
+ }
18
+
19
+ } // namespace margelo::nitro
@@ -0,0 +1,19 @@
1
+ #pragma once
2
+
3
+ #include "Dispatcher.hpp"
4
+ #include <dispatch/dispatch.h>
5
+
6
+ namespace margelo::nitro {
7
+
8
+ class UIThreadDispatcher : public Dispatcher {
9
+ public:
10
+ UIThreadDispatcher();
11
+
12
+ void runSync(std::function<void()>&& function) override;
13
+ void runAsync(std::function<void()>&& function) override;
14
+
15
+ private:
16
+ dispatch_queue_t _queue;
17
+ };
18
+
19
+ } // namespace margelo::nitro
@@ -5,8 +5,6 @@
5
5
  // Created by Marc Rousavy on 17.12.2024.
6
6
  //
7
7
 
8
- import Foundation
9
-
10
8
  public final class MemoryHelper {
11
9
  /**
12
10
  * Get the amount of memory that was allocated using a `malloc`-like allocator
@@ -5,8 +5,6 @@
5
5
  // Created by Marc Rousavy on 14.08.24.
6
6
  //
7
7
 
8
- import Foundation
9
-
10
8
  /// Wraps a Swift closure in a Swift class.
11
9
  /// This can be used to create unmanaged pointers (`void*`) and
12
10
  /// passed to C-style function pointers via `void* context` parameters.
@@ -7,7 +7,6 @@
7
7
 
8
8
  #if canImport(UIKit)
9
9
 
10
- import Foundation
11
10
  import UIKit
12
11
 
13
12
  /// A base protocol for all Swift-based Hybrid Views.
@@ -5,8 +5,6 @@
5
5
  // Created by Marc Rousavy on 13.01.25.
6
6
  //
7
7
 
8
- import Foundation
9
-
10
8
  /// A `HybridView` that can also be recycled.
11
9
  public protocol RecyclableView {
12
10
  /**
@@ -8,9 +8,14 @@ exports.getHostComponent = getHostComponent;
8
8
  var _reactNative = require("react-native");
9
9
  var NativeComponentRegistry = _interopRequireWildcard(require("react-native/Libraries/NativeComponent/NativeComponentRegistry"));
10
10
  function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
11
- // @ts-expect-error this unfortunately isn't typed or default-exported.
11
+ // TODO: Migrate to the official export of `NativeComponentRegistry` from `react-native` once react-native 0.83.0 becomes more established
12
12
  // eslint-disable-next-line @react-native/no-deep-imports
13
13
 
14
+ function typesafe(config) {
15
+ // TODO: Remove this unsafe cast and make it safe
16
+ return config;
17
+ }
18
+
14
19
  /**
15
20
  * Represents all default props a Nitro HybridView has.
16
21
  */
@@ -68,7 +73,7 @@ function getHostComponent(name, getViewConfig) {
68
73
  return NativeComponentRegistry.get(name, () => {
69
74
  const config = getViewConfig();
70
75
  config.validAttributes = wrapValidAttributes(config.validAttributes);
71
- return config;
76
+ return typesafe(config);
72
77
  });
73
78
  }
74
79
 
@@ -1 +1 @@
1
- {"version":3,"names":["_reactNative","require","NativeComponentRegistry","_interopRequireWildcard","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","wrapValidAttributes","attributes","keys","key","diff","a","b","process","getHostComponent","name","getViewConfig","Error","Platform","OS","config","validAttributes","callback","func"],"sourceRoot":"../../../src","sources":["views/getHostComponent.ts"],"mappings":";;;;;;;AAAA,IAAAA,YAAA,GAAAC,OAAA;AAGA,IAAAC,uBAAA,GAAAC,uBAAA,CAAAF,OAAA;AAAyG,SAAAE,wBAAAC,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAH,uBAAA,YAAAA,CAAAC,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAFzG;AACA;;AAyBA;AACA;AACA;;AAwBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAGA;AACA;AACA;;AASA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAYA;AACA;AACA;AACA;AACA,SAASkB,mBAAmBA,CAC1BC,UAAmC,EACV;EACzB,MAAMC,IAAI,GAAGL,MAAM,CAACK,IAAI,CAACD,UAAU,CAAsC;EACzE,KAAK,MAAME,GAAG,IAAID,IAAI,EAAE;IACtBD,UAAU,CAACE,GAAG,CAAC,GAAG;MAChBC,IAAI,EAAEA,CAACC,CAAC,EAAEC,CAAC,KAAKD,CAAC,KAAKC,CAAC;MACvBC,OAAO,EAAGnB,CAAC,IAAKA;IAClB,CAAC;EACH;EACA,OAAOa,UAAU;AACnB;;AAEA;AACA;AACA;AACA;AACA;AACO,SAASO,gBAAgBA,CAI9BC,IAAY,EACZC,aAAsC,EACL;EACjC,IAAI/B,uBAAuB,IAAI,IAAI,EAAE;IACnC,MAAM,IAAIgC,KAAK,CACb,+CAA+CC,qBAAQ,CAACC,EAAE,GAC5D,CAAC;EACH;EACA,OAAOlC,uBAAuB,CAACc,GAAG,CAACgB,IAAI,EAAE,MAAM;IAC7C,MAAMK,MAAM,GAAGJ,aAAa,CAAC,CAAC;IAC9BI,MAAM,CAACC,eAAe,GAAGf,mBAAmB,CAACc,MAAM,CAACC,eAAe,CAAC;IACpE,OAAOD,MAAM;EACf,CAAC,CAAC;AACJ;;AAEA;AACA;AACA;AACA;AACA;;AAIO,SAASE,QAAQA,CAACC,IAAa,EAAE;EACtC,IAAI,OAAOA,IAAI,KAAK,UAAU,EAAE;IAC9B,OAAO;MAAE5B,CAAC,EAAE4B;IAAK,CAAC;EACpB;EACA,OAAOA,IAAI;AACb","ignoreList":[]}
1
+ {"version":3,"names":["_reactNative","require","NativeComponentRegistry","_interopRequireWildcard","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","typesafe","config","wrapValidAttributes","attributes","keys","key","diff","a","b","process","getHostComponent","name","getViewConfig","Error","Platform","OS","validAttributes","callback","func"],"sourceRoot":"../../../src","sources":["views/getHostComponent.ts"],"mappings":";;;;;;;AAAA,IAAAA,YAAA,GAAAC,OAAA;AAGA,IAAAC,uBAAA,GAAAC,uBAAA,CAAAF,OAAA;AAAyG,SAAAE,wBAAAC,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAH,uBAAA,YAAAA,CAAAC,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAFzG;AACA;;AA4BA,SAASkB,QAAQA,CAAQC,MAAyB,EAAyB;EACzE;EACA,OAAOA,MAAM;AACf;;AAEA;AACA;AACA;;AAwBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAGA;AACA;AACA;;AASA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAYA;AACA;AACA;AACA;AACA,SAASC,mBAAmBA,CAC1BC,UAAmC,EACV;EACzB,MAAMC,IAAI,GAAGP,MAAM,CAACO,IAAI,CAACD,UAAU,CAAsC;EACzE,KAAK,MAAME,GAAG,IAAID,IAAI,EAAE;IACtBD,UAAU,CAACE,GAAG,CAAC,GAAG;MAChBC,IAAI,EAAEA,CAACC,CAAC,EAAEC,CAAC,KAAKD,CAAC,KAAKC,CAAC;MACvBC,OAAO,EAAGrB,CAAC,IAAKA;IAClB,CAAC;EACH;EACA,OAAOe,UAAU;AACnB;;AAEA;AACA;AACA;AACA;AACA;AACO,SAASO,gBAAgBA,CAI9BC,IAAY,EACZC,aAAsC,EACL;EACjC,IAAIjC,uBAAuB,IAAI,IAAI,EAAE;IACnC,MAAM,IAAIkC,KAAK,CACb,+CAA+CC,qBAAQ,CAACC,EAAE,GAC5D,CAAC;EACH;EACA,OAAOpC,uBAAuB,CAACc,GAAG,CAACkB,IAAI,EAAE,MAAM;IAC7C,MAAMV,MAAM,GAAGW,aAAa,CAAC,CAAC;IAC9BX,MAAM,CAACe,eAAe,GAAGd,mBAAmB,CAACD,MAAM,CAACe,eAAe,CAAC;IACpE,OAAOhB,QAAQ,CAACC,MAAM,CAAC;EACzB,CAAC,CAAC;AACJ;;AAEA;AACA;AACA;AACA;AACA;;AAIO,SAASgB,QAAQA,CAACC,IAAa,EAAE;EACtC,IAAI,OAAOA,IAAI,KAAK,UAAU,EAAE;IAC9B,OAAO;MAAE7B,CAAC,EAAE6B;IAAK,CAAC;EACpB;EACA,OAAOA,IAAI;AACb","ignoreList":[]}
@@ -1,9 +1,13 @@
1
1
  "use strict";
2
2
 
3
3
  import { Platform } from 'react-native';
4
- // @ts-expect-error this unfortunately isn't typed or default-exported.
4
+ // TODO: Migrate to the official export of `NativeComponentRegistry` from `react-native` once react-native 0.83.0 becomes more established
5
5
  // eslint-disable-next-line @react-native/no-deep-imports
6
6
  import * as NativeComponentRegistry from 'react-native/Libraries/NativeComponent/NativeComponentRegistry';
7
+ function typesafe(config) {
8
+ // TODO: Remove this unsafe cast and make it safe
9
+ return config;
10
+ }
7
11
 
8
12
  /**
9
13
  * Represents all default props a Nitro HybridView has.
@@ -62,7 +66,7 @@ export function getHostComponent(name, getViewConfig) {
62
66
  return NativeComponentRegistry.get(name, () => {
63
67
  const config = getViewConfig();
64
68
  config.validAttributes = wrapValidAttributes(config.validAttributes);
65
- return config;
69
+ return typesafe(config);
66
70
  });
67
71
  }
68
72
 
@@ -1 +1 @@
1
- {"version":3,"names":["Platform","NativeComponentRegistry","wrapValidAttributes","attributes","keys","Object","key","diff","a","b","process","i","getHostComponent","name","getViewConfig","Error","OS","get","config","validAttributes","callback","func","f"],"sourceRoot":"../../../src","sources":["views/getHostComponent.ts"],"mappings":";;AAAA,SAASA,QAAQ,QAA4C,cAAc;AAC3E;AACA;AACA,OAAO,KAAKC,uBAAuB,MAAM,gEAAgE;;AAwBzG;AACA;AACA;;AAwBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAGA;AACA;AACA;;AASA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAYA;AACA;AACA;AACA;AACA,SAASC,mBAAmBA,CAC1BC,UAAmC,EACV;EACzB,MAAMC,IAAI,GAAGC,MAAM,CAACD,IAAI,CAACD,UAAU,CAAsC;EACzE,KAAK,MAAMG,GAAG,IAAIF,IAAI,EAAE;IACtBD,UAAU,CAACG,GAAG,CAAC,GAAG;MAChBC,IAAI,EAAEA,CAACC,CAAC,EAAEC,CAAC,KAAKD,CAAC,KAAKC,CAAC;MACvBC,OAAO,EAAGC,CAAC,IAAKA;IAClB,CAAC;EACH;EACA,OAAOR,UAAU;AACnB;;AAEA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASS,gBAAgBA,CAI9BC,IAAY,EACZC,aAAsC,EACL;EACjC,IAAIb,uBAAuB,IAAI,IAAI,EAAE;IACnC,MAAM,IAAIc,KAAK,CACb,+CAA+Cf,QAAQ,CAACgB,EAAE,GAC5D,CAAC;EACH;EACA,OAAOf,uBAAuB,CAACgB,GAAG,CAACJ,IAAI,EAAE,MAAM;IAC7C,MAAMK,MAAM,GAAGJ,aAAa,CAAC,CAAC;IAC9BI,MAAM,CAACC,eAAe,GAAGjB,mBAAmB,CAACgB,MAAM,CAACC,eAAe,CAAC;IACpE,OAAOD,MAAM;EACf,CAAC,CAAC;AACJ;;AAEA;AACA;AACA;AACA;AACA;;AAIA,OAAO,SAASE,QAAQA,CAACC,IAAa,EAAE;EACtC,IAAI,OAAOA,IAAI,KAAK,UAAU,EAAE;IAC9B,OAAO;MAAEC,CAAC,EAAED;IAAK,CAAC;EACpB;EACA,OAAOA,IAAI;AACb","ignoreList":[]}
1
+ {"version":3,"names":["Platform","NativeComponentRegistry","typesafe","config","wrapValidAttributes","attributes","keys","Object","key","diff","a","b","process","i","getHostComponent","name","getViewConfig","Error","OS","get","validAttributes","callback","func","f"],"sourceRoot":"../../../src","sources":["views/getHostComponent.ts"],"mappings":";;AAAA,SAASA,QAAQ,QAA4C,cAAc;AAC3E;AACA;AACA,OAAO,KAAKC,uBAAuB,MAAM,gEAAgE;AA2BzG,SAASC,QAAQA,CAAQC,MAAyB,EAAyB;EACzE;EACA,OAAOA,MAAM;AACf;;AAEA;AACA;AACA;;AAwBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAGA;AACA;AACA;;AASA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAYA;AACA;AACA;AACA;AACA,SAASC,mBAAmBA,CAC1BC,UAAmC,EACV;EACzB,MAAMC,IAAI,GAAGC,MAAM,CAACD,IAAI,CAACD,UAAU,CAAsC;EACzE,KAAK,MAAMG,GAAG,IAAIF,IAAI,EAAE;IACtBD,UAAU,CAACG,GAAG,CAAC,GAAG;MAChBC,IAAI,EAAEA,CAACC,CAAC,EAAEC,CAAC,KAAKD,CAAC,KAAKC,CAAC;MACvBC,OAAO,EAAGC,CAAC,IAAKA;IAClB,CAAC;EACH;EACA,OAAOR,UAAU;AACnB;;AAEA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASS,gBAAgBA,CAI9BC,IAAY,EACZC,aAAsC,EACL;EACjC,IAAIf,uBAAuB,IAAI,IAAI,EAAE;IACnC,MAAM,IAAIgB,KAAK,CACb,+CAA+CjB,QAAQ,CAACkB,EAAE,GAC5D,CAAC;EACH;EACA,OAAOjB,uBAAuB,CAACkB,GAAG,CAACJ,IAAI,EAAE,MAAM;IAC7C,MAAMZ,MAAM,GAAGa,aAAa,CAAC,CAAC;IAC9Bb,MAAM,CAACiB,eAAe,GAAGhB,mBAAmB,CAACD,MAAM,CAACiB,eAAe,CAAC;IACpE,OAAOlB,QAAQ,CAACC,MAAM,CAAC;EACzB,CAAC,CAAC;AACJ;;AAEA;AACA;AACA;AACA;AACA;;AAIA,OAAO,SAASkB,QAAQA,CAACC,IAAa,EAAE;EACtC,IAAI,OAAOA,IAAI,KAAK,UAAU,EAAE;IAC9B,OAAO;MAAEC,CAAC,EAAED;IAAK,CAAC;EACpB;EACA,OAAOA,IAAI;AACb","ignoreList":[]}
@@ -1 +1 @@
1
- {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/hybridobject.ts","../src/anyhybridobject.ts","../src/anymap.ts","../src/boxedhybridobject.ts","../src/customtype.ts","../../../node_modules/react-native/types/modules/batchedbridge.d.ts","../../../node_modules/react-native/libraries/vendor/emitter/eventemitter.d.ts","../../../node_modules/react-native/types/modules/codegen.d.ts","../../../node_modules/react-native/types/modules/devtools.d.ts","../../../node_modules/react-native/libraries/vendor/core/errorutils.d.ts","../../../node_modules/react-native/src/types/globals.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/react-native/types/private/utilities.d.ts","../../../node_modules/react-native/types/public/insets.d.ts","../../../node_modules/react-native/types/public/reactnativetypes.d.ts","../../../node_modules/react-native/libraries/types/coreeventtypes.d.ts","../../../node_modules/react-native/types/public/reactnativerenderer.d.ts","../../../node_modules/react-native/libraries/components/touchable/touchable.d.ts","../../../node_modules/react-native/libraries/components/view/viewaccessibility.d.ts","../../../node_modules/react-native/libraries/components/view/viewproptypes.d.ts","../../../node_modules/react-native/libraries/components/refreshcontrol/refreshcontrol.d.ts","../../../node_modules/react-native/libraries/components/view/view.d.ts","../../../node_modules/react-native/libraries/components/scrollview/scrollview.d.ts","../../../node_modules/react-native/libraries/image/imageresizemode.d.ts","../../../node_modules/react-native/libraries/image/imagesource.d.ts","../../../node_modules/react-native/libraries/image/image.d.ts","../../../node_modules/@react-native/virtualized-lists/lists/virtualizedlist.d.ts","../../../node_modules/@react-native/virtualized-lists/index.d.ts","../../../node_modules/react-native/libraries/lists/flatlist.d.ts","../../../node_modules/react-native/libraries/reactnative/rendererproxy.d.ts","../../../node_modules/react-native/libraries/lists/sectionlist.d.ts","../../../node_modules/react-native/libraries/text/text.d.ts","../../../node_modules/react-native/libraries/animated/animated.d.ts","../../../node_modules/react-native/libraries/stylesheet/stylesheettypes.d.ts","../../../node_modules/react-native/libraries/stylesheet/stylesheet.d.ts","../../../node_modules/react-native/libraries/stylesheet/processcolor.d.ts","../../../node_modules/react-native/libraries/actionsheetios/actionsheetios.d.ts","../../../node_modules/react-native/libraries/alert/alert.d.ts","../../../node_modules/react-native/libraries/animated/easing.d.ts","../../../node_modules/react-native/libraries/animated/useanimatedvalue.d.ts","../../../node_modules/react-native/libraries/eventemitter/rctdeviceeventemitter.d.ts","../../../node_modules/react-native/libraries/eventemitter/rctnativeappeventemitter.d.ts","../../../node_modules/react-native/libraries/appstate/appstate.d.ts","../../../node_modules/react-native/libraries/batchedbridge/nativemodules.d.ts","../../../node_modules/react-native/libraries/components/accessibilityinfo/accessibilityinfo.d.ts","../../../node_modules/react-native/libraries/components/activityindicator/activityindicator.d.ts","../../../node_modules/react-native/libraries/components/clipboard/clipboard.d.ts","../../../node_modules/react-native/libraries/components/drawerandroid/drawerlayoutandroid.d.ts","../../../node_modules/react-native/libraries/eventemitter/nativeeventemitter.d.ts","../../../node_modules/react-native/libraries/components/keyboard/keyboard.d.ts","../../../node_modules/react-native/types/private/timermixin.d.ts","../../../node_modules/react-native/libraries/components/keyboard/keyboardavoidingview.d.ts","../../../node_modules/react-native/libraries/components/layoutconformance/layoutconformance.d.ts","../../../node_modules/react-native/libraries/components/pressable/pressable.d.ts","../../../node_modules/react-native/libraries/components/progressbarandroid/progressbarandroid.d.ts","../../../node_modules/react-native/libraries/components/safeareaview/safeareaview.d.ts","../../../node_modules/react-native/libraries/components/statusbar/statusbar.d.ts","../../../node_modules/react-native/libraries/components/switch/switch.d.ts","../../../node_modules/react-native/libraries/components/textinput/inputaccessoryview.d.ts","../../../node_modules/react-native/libraries/components/textinput/textinput.d.ts","../../../node_modules/react-native/libraries/components/toastandroid/toastandroid.d.ts","../../../node_modules/react-native/libraries/components/touchable/touchablewithoutfeedback.d.ts","../../../node_modules/react-native/libraries/components/touchable/touchablehighlight.d.ts","../../../node_modules/react-native/libraries/components/touchable/touchableopacity.d.ts","../../../node_modules/react-native/libraries/components/touchable/touchablenativefeedback.d.ts","../../../node_modules/react-native/libraries/components/button.d.ts","../../../node_modules/react-native/libraries/core/registercallablemodule.d.ts","../../../node_modules/react-native/libraries/interaction/interactionmanager.d.ts","../../../node_modules/react-native/libraries/interaction/panresponder.d.ts","../../../node_modules/react-native/libraries/layoutanimation/layoutanimation.d.ts","../../../node_modules/react-native/libraries/linking/linking.d.ts","../../../node_modules/react-native/libraries/logbox/logbox.d.ts","../../../node_modules/react-native/libraries/modal/modal.d.ts","../../../node_modules/react-native/libraries/performance/systrace.d.ts","../../../node_modules/react-native/libraries/permissionsandroid/permissionsandroid.d.ts","../../../node_modules/react-native/libraries/pushnotificationios/pushnotificationios.d.ts","../../../node_modules/react-native/libraries/utilities/iperformancelogger.d.ts","../../../node_modules/react-native/libraries/reactnative/appregistry.d.ts","../../../node_modules/react-native/libraries/reactnative/i18nmanager.d.ts","../../../node_modules/react-native/libraries/reactnative/roottag.d.ts","../../../node_modules/react-native/libraries/reactnative/uimanager.d.ts","../../../node_modules/react-native/libraries/reactnative/requirenativecomponent.d.ts","../../../node_modules/react-native/libraries/settings/settings.d.ts","../../../node_modules/react-native/libraries/share/share.d.ts","../../../node_modules/react-native/libraries/stylesheet/platformcolorvaluetypesios.d.ts","../../../node_modules/react-native/libraries/stylesheet/platformcolorvaluetypes.d.ts","../../../node_modules/react-native/libraries/turbomodule/rctexport.d.ts","../../../node_modules/react-native/libraries/turbomodule/turbomoduleregistry.d.ts","../../../node_modules/react-native/libraries/types/codegentypesnamespace.d.ts","../../../node_modules/react-native/libraries/utilities/appearance.d.ts","../../../node_modules/react-native/libraries/utilities/backhandler.d.ts","../../../node_modules/react-native/src/private/devsupport/devmenu/devmenu.d.ts","../../../node_modules/react-native/libraries/utilities/devsettings.d.ts","../../../node_modules/react-native/libraries/utilities/dimensions.d.ts","../../../node_modules/react-native/libraries/utilities/pixelratio.d.ts","../../../node_modules/react-native/libraries/utilities/platform.d.ts","../../../node_modules/react-native/libraries/vibration/vibration.d.ts","../../../node_modules/react-native/types/public/deprecatedpropertiesalias.d.ts","../../../node_modules/react-native/libraries/utilities/codegennativecommands.d.ts","../../../node_modules/react-native/libraries/utilities/codegennativecomponent.d.ts","../../../node_modules/react-native/types/index.d.ts","../src/modulenotfounderror.ts","../src/nitromodulesproxy.ts","../src/turbomodule/nativenitromodules.ts","../src/nitromodules.ts","../src/sync.ts","../src/gethybridobjectconstructor.ts","../src/globals.d.ts","../../../node_modules/react-native-worklets/lib/typescript/memory/types.d.ts","../../../node_modules/react-native-worklets/lib/typescript/memory/serializable.d.ts","../../../node_modules/react-native-worklets/lib/typescript/deprecated.d.ts","../../../node_modules/react-native-worklets/lib/typescript/featureflags/types.d.ts","../../../node_modules/react-native-worklets/lib/typescript/featureflags/featureflags.d.ts","../../../node_modules/react-native-worklets/lib/typescript/memory/issynchronizable.d.ts","../../../node_modules/react-native-worklets/lib/typescript/memory/serializablemappingcache.d.ts","../../../node_modules/react-native-worklets/lib/typescript/memory/synchronizable.d.ts","../../../node_modules/react-native-worklets/lib/typescript/runtimekind.d.ts","../../../node_modules/react-native-worklets/lib/typescript/types.d.ts","../../../node_modules/react-native-worklets/lib/typescript/runtimes.d.ts","../../../node_modules/react-native-worklets/lib/typescript/threads.d.ts","../../../node_modules/react-native-worklets/lib/typescript/workletfunction.d.ts","../../../node_modules/react-native-worklets/lib/typescript/workletsmodule/workletsmoduleproxy.d.ts","../../../node_modules/react-native-worklets/lib/typescript/workletsmodule/nativeworklets.d.ts","../../../node_modules/react-native-worklets/lib/typescript/index.d.ts","../src/worklets/installworkletssupport.ts","../src/views/hybridview.ts","../src/views/gethostcomponent.ts","../src/index.ts","../src/__tests__/index.test.tsx","../src/turbomodule/nativenitromodules.web.ts","../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileIdsList":[[213],[107],[92,181],[215,218],[90,91],[211,217],[215],[212,216],[214],[189,190],[192],[189,190,191,193,194,195,196,197,198,199,200,201,202,203],[189],[198],[197],[202],[189,198],[115,116],[92,96,102,103,106,109,111,112,115],[113],[122],[85,95],[92,93,95,96,100,114,115],[92,115,144,145],[92,93,95,96,100,115],[85,129],[92,93,100,114,115,131],[92],[92,94,96,99,100,102,114,115],[92,93,95,100,115],[92,93,95,100],[92,93,94,95,96,98,100,101,102,114,115],[92,115],[92,114,115],[85,92,93,95,96,99,100,114,115,131],[92,94,96],[92,102,114,115,142],[92,93,98,115,142,144],[92,102,142],[92,93,94,96,98,99,114,115,131],[96],[92,94,96,97,98,99,114,115],[85],[121],[92,93,94,95,96,99,104,105,114,115],[96,97],[92,102,103,108,114,115],[92,103,108,110,114,115],[92,96,100,115],[92,114,157],[95],[92,95],[115],[114],[104,113,115],[92,93,95,96,99,114,115],[167],[85,181],[181],[129],[88],[84,85,86,87,88,89,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[87],[79],[79,185],[79,80,81,82,83,185,186,187,205,206,207],[184],[79,82],[181,182,183],[181,206],[79,185,204]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"85f7579c23cbdecb2381b2a167c6f1ad26a64eb3949d7d145894609ff34f7283","signature":"bc28a9d6e1a6a95c1bbfd69e1774e9a006141fd0c17718b80384487c82c3be97"},{"version":"0624a5b567f54f04e38734411545d04646a7acef6dbedc764dfebe85b730a848","signature":"7878071a1f9b5e6d06d2dbbdf24b17f7c51fe7df544f3c8c4c7673feaa9735a3"},{"version":"a064b82533d211b1f97d1dc7c82e8d622d82d873a3dbb7e225f6e17814f40003","signature":"5d6084b922921ea84fce8617204272f5fb30ef8bedd91da18102c160fcf591aa"},{"version":"a5165d848f52564ef65ec800204fd23bbbaca5e0850750b7f9c796bc4d7ffea2","signature":"0922fce4a4135a1673a4707de6957b61a39b3527c729297ade91b7b80fcff1f7"},{"version":"70aa4226aad16d349e306ae42b57cac7c5dae80d9d95b470a4c1998f4a510c61","signature":"f4222ee35793fb4b97543095791973c34edf92236f76c395946a1627e383d9b6"},{"version":"3a909e8789a4f8b5377ef3fb8dc10d0c0a090c03f2e40aab599534727457475a","affectsGlobalScope":true,"impliedFormat":1},{"version":"fd412dd6372493eb8e3e95cae8687d35e4d34dde905a33e0ee47b74224cdd6ab","impliedFormat":1},{"version":"9d3b119c15e8eeb9a8fbeca47e0165ca7120704d90bf123b16ee5b612e2ecc9d","impliedFormat":1},{"version":"9f66eb21b8f041974625ec8f8ab3c6c36990b900b053ba962bb8b233301c8e47","impliedFormat":1},{"version":"005319c82222e57934c7b211013eb6931829e46b2a61c5d9a1c3c25f8dc3ea90","impliedFormat":1},{"version":"54ccb63049fb6d1d3635f3dc313ebfe3a8059f6b6afa8b9d670579534f6e25a6","affectsGlobalScope":true,"impliedFormat":1},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"0ff1b165090b491f5e1407ae680b9a0bc3806dc56827ec85f93c57390491e732","impliedFormat":1},{"version":"232f660363b3b189f7be7822ed71e907195d1a85bc8d55d2b7ce3f09b2136938","impliedFormat":1},{"version":"e745388cfad9efb4e5a9a15a2c6b66d54094dd82f8d0c2551064e216f7b51526","impliedFormat":1},{"version":"d11cbcaf3a54861b1d348ba2adeeba67976ce0b33eef5ea6e4bddc023d2ac4b2","impliedFormat":1},{"version":"cf1e23408bb2e38cb90d109cf8027c829f19424ad7a611c74edf39e1f195fe22","impliedFormat":1},{"version":"8ebf448e9837fda1a368acbb575b0e28843d5b2a3fda04bce76248b64326ea49","impliedFormat":1},{"version":"91b9f6241fca7843985aa31157cfa08cc724c77d91145a4d834d27cdde099c05","impliedFormat":1},{"version":"c5dc49c81f9cb20dff16b7933b50e19ac3565430cf685bbe51bcbcdb760fc03f","impliedFormat":1},{"version":"d78d4bc8bbda13ed147b23e63ff4ac83e3dcf4f07012afadd59e8a62473b5894","impliedFormat":1},{"version":"3dfa3a6f2a62259b56fa7bcebfbacf886848dfa037298be5bed07c7a0381ee4f","impliedFormat":1},{"version":"1882680f8c88c5648d603408dd1943857ca831a815e33d3126be8368f7a69252","impliedFormat":1},{"version":"24b6109bdf5e2027f0a4366b9e1f988d648f08ea3748ebd690e76bba65115bf9","impliedFormat":1},{"version":"e7d56fa3c64c44b29fa11d840b1fe04f6d782fc2e341a1f01b987f5e59f34266","impliedFormat":1},{"version":"0f86beb951b048eb7e0a17609e934a59a8686683b2134632975baeacaf53c23d","impliedFormat":1},{"version":"e1835114d3449689778b4d41a5dde326cf82c5d13ddd902a9b71f5bf223390fb","impliedFormat":1},{"version":"16000ce3a50ff9513f802cef9ec1ce95d4b93ce251d01fd82d5c61a34e0e35bd","impliedFormat":1},{"version":"42bacb33cddecbcfe3e043ee1117ba848801749e44f947626765b3e0aec74b1c","impliedFormat":1},{"version":"4e1bfec0f44a463f25cc26528a4505bc592feef555706311a143481f69a21d6f","impliedFormat":1},{"version":"cd2156bc8e4d54d52a2817d1b6f4629a5dd3173b1d8bb0fc893ee678d6a78ecd","impliedFormat":1},{"version":"60526d9010e8ccb2a76a59821061463464c3acd5bc7a50320df6d2e4e0d6e4f7","impliedFormat":1},{"version":"35e068ea47e779f232417d5c9fd595af9a85d26b2b77f89ae6afce17343d31e7","impliedFormat":1},{"version":"963dfba66d1744c7b35ae81cf6ebda2921df916806b6958ba093b63b0ef8c74a","impliedFormat":1},{"version":"70533e87167cf88facbec8ef771f9ad98021d796239c1e6f7826e0f386a725be","impliedFormat":1},{"version":"0600b6952abba5696c5079a62cc14430ba48682b1e1b7fbade74290c9857cd9a","impliedFormat":1},{"version":"9054417b5760061bc5fe31f9eee5dc9bf018339b0617d3c65dd1673c8e3c0f25","impliedFormat":1},{"version":"c6b68cd2e7838e91e05ede0a686815f521024281768f338644f6c0e0ad8e63cd","impliedFormat":1},{"version":"20c7a8cb00fda35bf50333488657c20fd36b9af9acb550f8410ef3e9bef51ef0","impliedFormat":1},{"version":"c94f70562ae60797cce564c3bebbaaf1752c327d5063d6ac152aa5ca1616c267","impliedFormat":1},{"version":"2aeb5fcdfc884b16015617d263fd8d1a8513f7efe23880be4e5f0bdb3794b37c","impliedFormat":1},{"version":"b561170fbe8d4292425e1dfa52406c8d97575681f7a5e420d11d9f72f7c29e38","impliedFormat":1},{"version":"5fe94f3f6411a0f6293f16fdc8e02ee61138941847ce91d6f6800c97fac22fcd","impliedFormat":1},{"version":"7f7c0ecc3eeeef905a3678e540947f4fbbc1a9c76075419dcc5fbfc3df59cb0b","impliedFormat":1},{"version":"df3303018d45c92be73fb4a282d5a242579f96235f5e0f8981983102caf5feca","impliedFormat":1},{"version":"92c10b9a2fcc6e4e4a781c22a97a0dac735e29b9059ecb6a7fa18d5b6916983b","impliedFormat":1},{"version":"8205e62a7310ac0513747f6d84175400680cff372559bc5fbe2df707194a295d","impliedFormat":1},{"version":"084d0df6805570b6dc6c8b49c3a71d5bdfe59606901e0026c63945b68d4b080a","impliedFormat":1},{"version":"9235e7b554d1c15ea04977b69cd123c79bd10f81704479ad5145e34d0205bf07","impliedFormat":1},{"version":"0f066f9654e700a9cf79c75553c934eb14296aa80583bd2b5d07e2d582a3f4ee","impliedFormat":1},{"version":"269c5d54104033b70331343bd931c9933852a882391ed6bd98c3d8b7d6465d22","impliedFormat":1},{"version":"a56b8577aaf471d9e60582065a8193269310e8cae48c1ce4111ed03216f5f715","impliedFormat":1},{"version":"486ae83cd51b813095f6716f06cc9b2cf480ad1d6c7f8ec59674d6c858cd2407","impliedFormat":1},{"version":"039f0a1f6d67514bbfea62ffbb0822007ce35ba180853ec9034431f60f63dbe6","impliedFormat":1},{"version":"fff527e2567a24dd634a30268f1aa8a220315fed9c513d70ee872e54f67f27f3","impliedFormat":1},{"version":"5dd0ff735b3f2e642c3f16bcfb3dc4ecebb679a70e43cfb19ab5fd84d8faaeed","impliedFormat":1},{"version":"71a9a3cf1e644ec071aa3ec6417ad05aae80c7bd55ef49b011be3cf1f17b7421","impliedFormat":1},{"version":"b7d1cdc9810b334734a7d607c195daa721df6d114d99e96d595ff52db1df627b","impliedFormat":1},{"version":"79150b9d6ee93942e4e45dddf3ef823b7298b3dda0a894ac8235206cf2909587","impliedFormat":1},{"version":"77282216c61bcef9a700db98e142301d5a7d988d3076286029da63e415e98a42","impliedFormat":1},{"version":"57b242af775e000ef0e0abb946542b0094fdb761ea52affb69b59b85ad83d34f","impliedFormat":1},{"version":"75ff8ea2c0c632719c14f50849c1fc7aa2d49f42b08c54373688536b3f995ee7","impliedFormat":1},{"version":"85a915dbb768b89cb92f5e6c165d776bfebd065883c34fee4e0219c3ed321b47","impliedFormat":1},{"version":"83df2f39cb14971adea51d1c84e7d146a34e9b7f84ad118450a51bdc3138412c","impliedFormat":1},{"version":"96d6742b440a834780d550fffc57d94d0aece2e04e485bce8d817dc5fb9b05d7","impliedFormat":1},{"version":"bdb2b70c74908c92ec41d8dd8375a195cb3bb07523e4de642b2b2dfbde249ca6","impliedFormat":1},{"version":"7b329f4137a552073f504022acbf8cd90d49cc5e5529791bef508f76ff774854","impliedFormat":1},{"version":"f63bbbffcfc897d22f34cf19ae13405cd267b1783cd21ec47d8a2d02947c98c1","impliedFormat":1},{"version":"9da2649fb89af9bd08b2215621ad1cfda50f798d0acbd0d5fee2274ee940c827","impliedFormat":1},{"version":"df55b9be6ba19a6f77487e09dc7a94d7c9bf66094d35ea168dbd4bac42c46b8f","impliedFormat":1},{"version":"595125f3e088b883d104622ef10e6b7d5875ff6976bbe4d7dca090a3e2dca513","impliedFormat":1},{"version":"737fc8159cb99bf39a201c4d7097e92ad654927da76a1297ace7ffe358a2eda3","impliedFormat":1},{"version":"e0d7eed4ba363df3faadb8e617f95f9fc8adfbb00b87db7ade4a1098d6cf1e90","impliedFormat":1},{"version":"676088e53ca31e9e21e53f5a8996345d1b8a7d153737208029db964279004c3e","impliedFormat":1},{"version":"de115595321ce012c456f512a799679bfc874f0ac0a4928a8429557bb25086aa","impliedFormat":1},{"version":"896e4b676a6f55ca66d40856b63ec2ff7f4f594d6350f8ae04eaee8876da0bc5","impliedFormat":1},{"version":"0524cab11ba9048d151d93cc666d3908fda329eec6b1642e9a936093e6d79f28","impliedFormat":1},{"version":"869073d7523e75f45bd65b2072865c60002d5e0cbd3d17831e999cf011312778","impliedFormat":1},{"version":"bc7b5906a6ce6c5744a640c314e020856be6c50a693e77dc12aff2d77b12ca76","impliedFormat":1},{"version":"56503e377bc1344f155e4e3115a772cb4e59350c0b8131e3e1fb2750ac491608","impliedFormat":1},{"version":"6b579287217ee1320ee1c6cfec5f6730f3a1f91daab000f7131558ee531b2bf8","impliedFormat":1},{"version":"2586bc43511ba0f0c4d8e35dacf25ed596dde8ec50b9598ecd80194af52f992f","impliedFormat":1},{"version":"a793636667598e739a52684033037a67dc2d9db37fab727623626ef19aa5abb9","impliedFormat":1},{"version":"b15d6238a86bc0fc2368da429249b96c260debc0cec3eb7b5f838ad32587c129","impliedFormat":1},{"version":"9a9fba3a20769b0a74923e7032997451b61c1bd371c519429b29019399040d74","impliedFormat":1},{"version":"4b10e2fe52cb61035e58df3f1fdd926dd0fe9cf1a2302f92916da324332fb4e0","impliedFormat":1},{"version":"d1092ae8d6017f359f4758115f588e089848cc8fb359f7ba045b1a1cf3668a49","impliedFormat":1},{"version":"ddae9195b0da7b25a585ef43365f4dc5204a746b155fbee71e6ee1a9193fb69f","impliedFormat":1},{"version":"32dbced998ce74c5e76ce87044d0b4071857576dde36b0c6ed1d5957ce9cf5b5","impliedFormat":1},{"version":"29befd9bb08a9ed1660fd7ac0bc2ad24a56da550b75b8334ac76c2cfceda974a","impliedFormat":1},{"version":"ed8a8dedbd26d5c101bcc2d1691535d1fd0470dc82d7e866391e9b31b851ea8c","impliedFormat":1},{"version":"0aba767f26742d337f50e46f702a95f83ce694101fa9b8455786928a5672bb9b","impliedFormat":1},{"version":"8db57d8da0ab49e839fb2d0874cfe456553077d387f423a7730c54ef5f494318","impliedFormat":1},{"version":"ecc1b8878c8033bde0204b85e26fe1af6847805427759e5723882c848a11e134","impliedFormat":1},{"version":"cfc9c32553ad3b5be38342bc8731397438a93531118e1a226a8c79ad255b4f0c","impliedFormat":1},{"version":"16e5b5b023c2a1119c1878a51714861c56255778de0a7fe378391876a15f7433","impliedFormat":1},{"version":"f65096bb6555aad0429c5b6b21b92683398434be9b2ce0d3a1fdbb651c1243f1","impliedFormat":1},{"version":"a090a8a3b0ef2cceeb089acf4df95df72e7d934215896afe264ff6f734d66d15","impliedFormat":1},{"version":"151f422f08c8ca67b77c5c39d49278b4df452ef409237c8219be109ae3cdae9d","impliedFormat":1},{"version":"412a06aa68e902bc67d69f381c06f8fd52497921c5746fabddadd44f624741f5","impliedFormat":1},{"version":"c469120d20804fda2fc836f4d7007dfd5c1cef70443868858cb524fd6e54def1","impliedFormat":1},{"version":"a32cc760d7c937dde05523434e3d7036dd6ca0ba8cb69b8f4f9557ffd80028b7","impliedFormat":1},{"version":"445f7bb9b132395763d2fd00e88167a7b7d5c514728cfe462c17d044fe9f27d2","signature":"5423eff0aeb3d2eba041721efabde15d1c06709724dea6ae79b48559f86ed9b8","affectsGlobalScope":true},{"version":"021b66c21e266bf897eefa1e41b21668059eab64ce7bdd4d5c425f9145bf6203","signature":"4355f2fcc7ced06180b6c8a4d33fc2b9d083eed850ca2eec64a9689bb1d502ef"},{"version":"1e45688ca2b75a50cf7032c972380760b37f404dbc11e6e7c69aabf8d597b032","signature":"cea47047c6bcf41628abd5e7a55c03ed9f1706cd8fd8880ac2ff32fa3a71a589"},{"version":"725586b511f51bca1589b2476a469a9335db4cb1fe1b8fd0e94c189d7335fa98","signature":"edac49118a9eb46d842c8d24a567e31f0290ecdf8d44a5fc78da3112c2fdda54"},{"version":"9be7cfc079aa51a357a4aa6ec55dfde1b7a2f70dfffd5d4ec91dfdfda7d4e20b","signature":"9a69602e1cbf7afe7ea8fa14121f7572f2bf024948fb2f6ad6dfaab26adc4978"},{"version":"29e2fffb6dcaf9a4cda61dbb7637421fff30e20021681874f0acdb83646a821d","signature":"6ec5edea89079b76d603c25fa0bbcbc1a0ef04e3c81f0d4d001c6a961830c19b"},{"version":"e27a640431efc9906d1b4ccba382bc2c5858f9ee304ad78e45bdecb367340613","affectsGlobalScope":true},{"version":"76292c6ef47b769a72de772e800eb08427c75cab39398fa0741d9f8b1fac5865","impliedFormat":1},{"version":"4cfa4ff43365d4be2e7e30b10fdb87b640b70937eba6c55dd3c8d167883c445d","impliedFormat":1},{"version":"5cfcb3a022da06031a63ca0c1a12b63d3b2b52d16309a856eb9de37ad2741182","impliedFormat":1},{"version":"f5e7925f0ce3a1671a7a2809ed2ec12312badb2834d8034a9e906c99546a7932","impliedFormat":1},{"version":"7a262b150b6f170ac6c555fd26909bc8e5ad0bb962537c5edbd1e10042b1b224","impliedFormat":1},{"version":"6a42594a49d1ab90a79287c9b1f52770dfe25c66a11e3730e02476ea4e3af322","impliedFormat":1},{"version":"b1aa6957cc9be4f2e9d8e2f3aab92978bd8854837771fda706b8eb4b1e2bbc96","impliedFormat":1},{"version":"cac1fd8a544e2f3f5fd047981156da014ca88503df42a8c4384581cf5a58b11c","impliedFormat":1},{"version":"1858da773f5eaa3f3c8dc07b401e85d3057ff01771c84c905c11a34472487742","impliedFormat":1},{"version":"19c3e56faf9a401b93ec37507d97572d295f4bb00a775d0455bc920d58e58250","affectsGlobalScope":true,"impliedFormat":1},{"version":"01ea032563dc4d47643b8e88ec094bfe5b2b274fcfd59f446369b18c963ade93","impliedFormat":1},{"version":"6697273e52441af8e34ecd87f018e292a75c3c5c022d4b4dfe93874751314a25","impliedFormat":1},{"version":"c179a885e989742ad1f1b58024a0674810bbca1a771ad82f543dc68d5468d396","impliedFormat":1},{"version":"64730ab9b396c96b2a01e3307d1ce8a9eb2a4c8e8ac82dd0eb4d6e7ddd3081a8","impliedFormat":1},{"version":"0f4e6fabcde74a53922bdb5d18fb99f2d69b92e01e9afa1816ef0680a9d5fed6","impliedFormat":1},{"version":"719ad5dd3a1e287cb54b4377967f99813e8144c61e1c954c585a644df3d7e87f","impliedFormat":1},{"version":"46395a1fc2ccf2a2a4755c858591504670956fd211b3ea959c2ea69effb9e5dd","signature":"a2c54199b883521001e7eb0e6b27594dcb4982a3ce4ab9ab9ad2b121f9ea31b9"},{"version":"7235e9000943436a04deeb504afbf16beda154bce1060d8648f33bc6324e8029","signature":"cc836371de1aa7a5171ed9f40e2019e9b1789109a843c8a5ccc2751db65eb4a5"},{"version":"a2192c1a4653f0a3f6af14019c20c723fac418733d5a27113ea13513a5bf20ba","signature":"173ae4741917fa7d2a79894a2af6d029ebb8d168c9066caae4bc4eaea856f9e1"},{"version":"b35b2e64b9e2de378f92bb2369355c78fcaee84f89ef0820c2d69b30960c59ca","signature":"aa42da361d18a38554e654ed9818f1ba2869021235ec66d431739005b626c09b"},{"version":"844f2848bfe787dc98769ea4edc2e30371a5bfb15ef9f3e6afd625e76f6dc5c8","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","affectsGlobalScope":true},{"version":"1c18d5790d0f5e15e84827cbf08982aef0339fb034b7971cff0535fc20a77879","signature":"68724f2c23cf02888072a2830ca5b336b6af536abce6094d3392e884c9293e52"},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1}],"root":[[79,83],[182,188],[205,210]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"allowUnreachableCode":false,"allowUnusedLabels":false,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":2,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noImplicitUseStrict":false,"noStrictGenericChecks":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./typescript","rootDir":"../src","skipLibCheck":true,"strict":true,"target":99,"verbatimModuleSyntax":true},"referencedMap":[[214,1],[108,2],[107,3],[219,4],[92,5],[218,6],[216,7],[217,8],[215,9],[191,10],[193,11],[204,12],[194,13],[190,13],[195,13],[196,13],[199,14],[198,15],[201,14],[203,16],[202,17],[117,18],[113,19],[120,20],[123,21],[125,22],[126,23],[146,24],[128,25],[130,26],[132,27],[133,28],[134,29],[135,30],[101,30],[136,31],[103,32],[137,33],[138,23],[139,34],[140,35],[98,36],[143,37],[145,38],[144,39],[142,40],[102,31],[99,41],[100,42],[129,43],[121,43],[122,44],[106,45],[148,43],[149,46],[151,26],[109,47],[111,48],[153,49],[158,50],[110,28],[162,51],[160,28],[161,52],[164,53],[166,53],[165,53],[116,53],[115,54],[114,55],[112,56],[168,57],[169,58],[96,52],[170,21],[171,21],[180,59],[173,60],[174,43],[89,61],[181,62],[86,58],[87,63],[178,59],[97,41],[95,28],[80,64],[82,64],[187,65],[208,66],[182,59],[185,67],[183,68],[184,69],[210,59],[207,70],[206,64],[205,71]],"latestChangedDtsFile":"./typescript/turbomodule/NativeNitroModules.web.d.ts","version":"5.8.3"}
1
+ {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/hybridobject.ts","../src/anyhybridobject.ts","../src/anymap.ts","../src/boxedhybridobject.ts","../src/customtype.ts","../../../node_modules/react-native/types/modules/batchedbridge.d.ts","../../../node_modules/react-native/libraries/vendor/emitter/eventemitter.d.ts","../../../node_modules/react-native/types/modules/codegen.d.ts","../../../node_modules/react-native/types/modules/devtools.d.ts","../../../node_modules/react-native/libraries/vendor/core/errorutils.d.ts","../../../node_modules/react-native/src/types/globals.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/react-native/types/private/utilities.d.ts","../../../node_modules/react-native/types/public/insets.d.ts","../../../node_modules/react-native/types/public/reactnativetypes.d.ts","../../../node_modules/react-native/libraries/types/coreeventtypes.d.ts","../../../node_modules/react-native/types/public/reactnativerenderer.d.ts","../../../node_modules/react-native/libraries/components/touchable/touchable.d.ts","../../../node_modules/react-native/libraries/components/view/viewaccessibility.d.ts","../../../node_modules/react-native/libraries/components/view/viewproptypes.d.ts","../../../node_modules/react-native/libraries/components/refreshcontrol/refreshcontrol.d.ts","../../../node_modules/react-native/libraries/components/view/view.d.ts","../../../node_modules/react-native/libraries/components/scrollview/scrollview.d.ts","../../../node_modules/react-native/libraries/image/imageresizemode.d.ts","../../../node_modules/react-native/libraries/image/imagesource.d.ts","../../../node_modules/react-native/libraries/image/image.d.ts","../../../node_modules/@react-native/virtualized-lists/lists/virtualizedlist.d.ts","../../../node_modules/@react-native/virtualized-lists/index.d.ts","../../../node_modules/react-native/libraries/lists/flatlist.d.ts","../../../node_modules/react-native/libraries/reactnative/rendererproxy.d.ts","../../../node_modules/react-native/libraries/lists/sectionlist.d.ts","../../../node_modules/react-native/libraries/text/text.d.ts","../../../node_modules/react-native/libraries/animated/animated.d.ts","../../../node_modules/react-native/libraries/stylesheet/stylesheettypes.d.ts","../../../node_modules/react-native/libraries/stylesheet/stylesheet.d.ts","../../../node_modules/react-native/libraries/stylesheet/processcolor.d.ts","../../../node_modules/react-native/libraries/actionsheetios/actionsheetios.d.ts","../../../node_modules/react-native/libraries/alert/alert.d.ts","../../../node_modules/react-native/libraries/animated/easing.d.ts","../../../node_modules/react-native/libraries/animated/useanimatedvalue.d.ts","../../../node_modules/react-native/libraries/eventemitter/rctdeviceeventemitter.d.ts","../../../node_modules/react-native/libraries/eventemitter/rctnativeappeventemitter.d.ts","../../../node_modules/react-native/libraries/appstate/appstate.d.ts","../../../node_modules/react-native/libraries/batchedbridge/nativemodules.d.ts","../../../node_modules/react-native/libraries/components/accessibilityinfo/accessibilityinfo.d.ts","../../../node_modules/react-native/libraries/components/activityindicator/activityindicator.d.ts","../../../node_modules/react-native/libraries/components/clipboard/clipboard.d.ts","../../../node_modules/react-native/libraries/components/drawerandroid/drawerlayoutandroid.d.ts","../../../node_modules/react-native/libraries/eventemitter/nativeeventemitter.d.ts","../../../node_modules/react-native/libraries/components/keyboard/keyboard.d.ts","../../../node_modules/react-native/types/private/timermixin.d.ts","../../../node_modules/react-native/libraries/components/keyboard/keyboardavoidingview.d.ts","../../../node_modules/react-native/libraries/components/layoutconformance/layoutconformance.d.ts","../../../node_modules/react-native/libraries/components/pressable/pressable.d.ts","../../../node_modules/react-native/libraries/components/progressbarandroid/progressbarandroid.d.ts","../../../node_modules/react-native/libraries/components/safeareaview/safeareaview.d.ts","../../../node_modules/react-native/libraries/components/statusbar/statusbar.d.ts","../../../node_modules/react-native/libraries/components/switch/switch.d.ts","../../../node_modules/react-native/libraries/components/textinput/inputaccessoryview.d.ts","../../../node_modules/react-native/libraries/components/textinput/textinput.d.ts","../../../node_modules/react-native/libraries/components/toastandroid/toastandroid.d.ts","../../../node_modules/react-native/libraries/components/touchable/touchablewithoutfeedback.d.ts","../../../node_modules/react-native/libraries/components/touchable/touchablehighlight.d.ts","../../../node_modules/react-native/libraries/components/touchable/touchableopacity.d.ts","../../../node_modules/react-native/libraries/components/touchable/touchablenativefeedback.d.ts","../../../node_modules/react-native/libraries/components/button.d.ts","../../../node_modules/react-native/libraries/core/registercallablemodule.d.ts","../../../node_modules/react-native/libraries/nativecomponent/nativecomponentregistry.d.ts","../../../node_modules/react-native/libraries/interaction/interactionmanager.d.ts","../../../node_modules/react-native/libraries/interaction/panresponder.d.ts","../../../node_modules/react-native/libraries/layoutanimation/layoutanimation.d.ts","../../../node_modules/react-native/libraries/linking/linking.d.ts","../../../node_modules/react-native/libraries/logbox/logbox.d.ts","../../../node_modules/react-native/libraries/modal/modal.d.ts","../../../node_modules/react-native/libraries/performance/systrace.d.ts","../../../node_modules/react-native/libraries/permissionsandroid/permissionsandroid.d.ts","../../../node_modules/react-native/libraries/pushnotificationios/pushnotificationios.d.ts","../../../node_modules/react-native/libraries/utilities/iperformancelogger.d.ts","../../../node_modules/react-native/libraries/reactnative/appregistry.d.ts","../../../node_modules/react-native/libraries/reactnative/i18nmanager.d.ts","../../../node_modules/react-native/libraries/reactnative/roottag.d.ts","../../../node_modules/react-native/libraries/reactnative/uimanager.d.ts","../../../node_modules/react-native/libraries/reactnative/requirenativecomponent.d.ts","../../../node_modules/react-native/libraries/settings/settings.d.ts","../../../node_modules/react-native/libraries/share/share.d.ts","../../../node_modules/react-native/libraries/stylesheet/platformcolorvaluetypesios.d.ts","../../../node_modules/react-native/libraries/stylesheet/platformcolorvaluetypes.d.ts","../../../node_modules/react-native/libraries/turbomodule/rctexport.d.ts","../../../node_modules/react-native/libraries/turbomodule/turbomoduleregistry.d.ts","../../../node_modules/react-native/libraries/types/codegentypesnamespace.d.ts","../../../node_modules/react-native/libraries/utilities/appearance.d.ts","../../../node_modules/react-native/libraries/utilities/backhandler.d.ts","../../../node_modules/react-native/src/private/devsupport/devmenu/devmenu.d.ts","../../../node_modules/react-native/libraries/utilities/devsettings.d.ts","../../../node_modules/react-native/libraries/utilities/dimensions.d.ts","../../../node_modules/react-native/libraries/utilities/pixelratio.d.ts","../../../node_modules/react-native/libraries/utilities/platform.d.ts","../../../node_modules/react-native/libraries/vibration/vibration.d.ts","../../../node_modules/react-native/types/public/deprecatedpropertiesalias.d.ts","../../../node_modules/react-native/libraries/utilities/codegennativecommands.d.ts","../../../node_modules/react-native/libraries/utilities/codegennativecomponent.d.ts","../../../node_modules/react-native/types/index.d.ts","../src/modulenotfounderror.ts","../src/nitromodulesproxy.ts","../src/turbomodule/nativenitromodules.ts","../src/nitromodules.ts","../src/sync.ts","../src/gethybridobjectconstructor.ts","../src/globals.d.ts","../../../node_modules/react-native-worklets/lib/typescript/memory/types.d.ts","../../../node_modules/react-native-worklets/lib/typescript/memory/serializable.d.ts","../../../node_modules/react-native-worklets/lib/typescript/deprecated.d.ts","../../../node_modules/react-native-worklets/lib/typescript/featureflags/types.d.ts","../../../node_modules/react-native-worklets/lib/typescript/featureflags/featureflags.d.ts","../../../node_modules/react-native-worklets/lib/typescript/memory/issynchronizable.d.ts","../../../node_modules/react-native-worklets/lib/typescript/memory/serializablemappingcache.d.ts","../../../node_modules/react-native-worklets/lib/typescript/memory/synchronizable.d.ts","../../../node_modules/react-native-worklets/lib/typescript/runtimekind.d.ts","../../../node_modules/react-native-worklets/lib/typescript/types.d.ts","../../../node_modules/react-native-worklets/lib/typescript/runtimes.d.ts","../../../node_modules/react-native-worklets/lib/typescript/threads.d.ts","../../../node_modules/react-native-worklets/lib/typescript/workletfunction.d.ts","../../../node_modules/react-native-worklets/lib/typescript/workletsmodule/workletsmoduleproxy.d.ts","../../../node_modules/react-native-worklets/lib/typescript/workletsmodule/nativeworklets.d.ts","../../../node_modules/react-native-worklets/lib/typescript/index.d.ts","../src/worklets/installworkletssupport.ts","../src/views/hybridview.ts","../src/views/gethostcomponent.ts","../src/index.ts","../src/__tests__/index.test.tsx","../src/turbomodule/nativenitromodules.web.ts","../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileIdsList":[[214],[107],[92,182],[216,219],[90,91],[212,218],[216],[213,217],[215],[190,191],[193],[190,191,192,194,195,196,197,198,199,200,201,202,203,204],[190],[199],[198],[203],[190,199],[115,116],[92,96,102,103,106,109,111,112,115],[113],[122],[85,95],[92,93,95,96,100,114,115],[92,115,144,145],[92,93,95,96,100,115],[85,129],[92,93,100,114,115,131],[92],[92,94,96,99,100,102,114,115],[92,93,95,100,115],[92,93,95,100],[92,93,94,95,96,98,100,101,102,114,115],[92,115],[92,114,115],[85,92,93,95,96,99,100,114,115,131],[92,94,96],[92,102,114,115,142],[92,93,98,115,142,144],[92,102,142],[92,93,94,96,98,99,114,115,131],[96],[92,94,96,97,98,99,114,115],[85],[121],[92,93,94,95,96,99,104,105,114,115],[96,97],[92,102,103,108,114,115],[92,103,108,110,114,115],[92,96,100,115],[92,95],[92,114,158],[95],[115],[114],[104,113,115],[92,93,95,96,99,114,115],[168],[85,182],[182],[129],[88],[84,85,86,87,88,89,94,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181],[87],[79],[79,186],[79,80,81,82,83,186,187,188,206,207,208],[185],[79,82],[182,183,184],[148,182,207],[79,186,205]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"85f7579c23cbdecb2381b2a167c6f1ad26a64eb3949d7d145894609ff34f7283","signature":"bc28a9d6e1a6a95c1bbfd69e1774e9a006141fd0c17718b80384487c82c3be97"},{"version":"0624a5b567f54f04e38734411545d04646a7acef6dbedc764dfebe85b730a848","signature":"7878071a1f9b5e6d06d2dbbdf24b17f7c51fe7df544f3c8c4c7673feaa9735a3"},{"version":"a064b82533d211b1f97d1dc7c82e8d622d82d873a3dbb7e225f6e17814f40003","signature":"5d6084b922921ea84fce8617204272f5fb30ef8bedd91da18102c160fcf591aa"},{"version":"a5165d848f52564ef65ec800204fd23bbbaca5e0850750b7f9c796bc4d7ffea2","signature":"0922fce4a4135a1673a4707de6957b61a39b3527c729297ade91b7b80fcff1f7"},{"version":"70aa4226aad16d349e306ae42b57cac7c5dae80d9d95b470a4c1998f4a510c61","signature":"f4222ee35793fb4b97543095791973c34edf92236f76c395946a1627e383d9b6"},{"version":"3a909e8789a4f8b5377ef3fb8dc10d0c0a090c03f2e40aab599534727457475a","affectsGlobalScope":true,"impliedFormat":1},{"version":"fd412dd6372493eb8e3e95cae8687d35e4d34dde905a33e0ee47b74224cdd6ab","impliedFormat":1},{"version":"9d3b119c15e8eeb9a8fbeca47e0165ca7120704d90bf123b16ee5b612e2ecc9d","impliedFormat":1},{"version":"9f66eb21b8f041974625ec8f8ab3c6c36990b900b053ba962bb8b233301c8e47","impliedFormat":1},{"version":"005319c82222e57934c7b211013eb6931829e46b2a61c5d9a1c3c25f8dc3ea90","impliedFormat":1},{"version":"54ccb63049fb6d1d3635f3dc313ebfe3a8059f6b6afa8b9d670579534f6e25a6","affectsGlobalScope":true,"impliedFormat":1},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"0ff1b165090b491f5e1407ae680b9a0bc3806dc56827ec85f93c57390491e732","impliedFormat":1},{"version":"232f660363b3b189f7be7822ed71e907195d1a85bc8d55d2b7ce3f09b2136938","impliedFormat":1},{"version":"e745388cfad9efb4e5a9a15a2c6b66d54094dd82f8d0c2551064e216f7b51526","impliedFormat":1},{"version":"84c8272b0651d84378f8d76bcc563fca1e88866f30fffd790d87648861d18ab1","impliedFormat":1},{"version":"cf1e23408bb2e38cb90d109cf8027c829f19424ad7a611c74edf39e1f195fe22","impliedFormat":1},{"version":"8ebf448e9837fda1a368acbb575b0e28843d5b2a3fda04bce76248b64326ea49","impliedFormat":1},{"version":"91b9f6241fca7843985aa31157cfa08cc724c77d91145a4d834d27cdde099c05","impliedFormat":1},{"version":"c5dc49c81f9cb20dff16b7933b50e19ac3565430cf685bbe51bcbcdb760fc03f","impliedFormat":1},{"version":"d78d4bc8bbda13ed147b23e63ff4ac83e3dcf4f07012afadd59e8a62473b5894","impliedFormat":1},{"version":"49f33cb54f1c57d269113fae1784795945957989b3b3e50e61cc6666c37698e7","impliedFormat":1},{"version":"f3c9bbc02c599af23defd5ca3683e46b4f3fa8a3e21a0194eac9910086050a0c","impliedFormat":1},{"version":"24b6109bdf5e2027f0a4366b9e1f988d648f08ea3748ebd690e76bba65115bf9","impliedFormat":1},{"version":"e7d56fa3c64c44b29fa11d840b1fe04f6d782fc2e341a1f01b987f5e59f34266","impliedFormat":1},{"version":"0f86beb951b048eb7e0a17609e934a59a8686683b2134632975baeacaf53c23d","impliedFormat":1},{"version":"e51855f55b01c41984044b49bd926b878a825ae696e62d77abf5b8c7f17922a3","impliedFormat":1},{"version":"c16b3221e31c25ef95c37c05c465abf16cbf6c9a7172f82cb5f8e697bd84ce03","impliedFormat":1},{"version":"42bacb33cddecbcfe3e043ee1117ba848801749e44f947626765b3e0aec74b1c","impliedFormat":1},{"version":"4e1bfec0f44a463f25cc26528a4505bc592feef555706311a143481f69a21d6f","impliedFormat":1},{"version":"cd2156bc8e4d54d52a2817d1b6f4629a5dd3173b1d8bb0fc893ee678d6a78ecd","impliedFormat":1},{"version":"6887bea839d87a3616091b06cfdd482b6180e62ea673341cac6a43c3493b639e","impliedFormat":1},{"version":"82eacfd7ea5b2ad312235aa279aaa1aecebed6b58d0f79fecc6f48a70417fa75","impliedFormat":1},{"version":"963dfba66d1744c7b35ae81cf6ebda2921df916806b6958ba093b63b0ef8c74a","impliedFormat":1},{"version":"c93437e279cd4550138d8ec781ccdba926301a201fffd6dd18efa9bbbbd2e9a3","impliedFormat":1},{"version":"0600b6952abba5696c5079a62cc14430ba48682b1e1b7fbade74290c9857cd9a","impliedFormat":1},{"version":"9054417b5760061bc5fe31f9eee5dc9bf018339b0617d3c65dd1673c8e3c0f25","impliedFormat":1},{"version":"c6b68cd2e7838e91e05ede0a686815f521024281768f338644f6c0e0ad8e63cd","impliedFormat":1},{"version":"20c7a8cb00fda35bf50333488657c20fd36b9af9acb550f8410ef3e9bef51ef0","impliedFormat":1},{"version":"c94f70562ae60797cce564c3bebbaaf1752c327d5063d6ac152aa5ca1616c267","impliedFormat":1},{"version":"2aeb5fcdfc884b16015617d263fd8d1a8513f7efe23880be4e5f0bdb3794b37c","impliedFormat":1},{"version":"b561170fbe8d4292425e1dfa52406c8d97575681f7a5e420d11d9f72f7c29e38","impliedFormat":1},{"version":"5fe94f3f6411a0f6293f16fdc8e02ee61138941847ce91d6f6800c97fac22fcd","impliedFormat":1},{"version":"7f7c0ecc3eeeef905a3678e540947f4fbbc1a9c76075419dcc5fbfc3df59cb0b","impliedFormat":1},{"version":"df3303018d45c92be73fb4a282d5a242579f96235f5e0f8981983102caf5feca","impliedFormat":1},{"version":"92c10b9a2fcc6e4e4a781c22a97a0dac735e29b9059ecb6a7fa18d5b6916983b","impliedFormat":1},{"version":"d45c2f63eab3d231c75a446cf9578c904f17f096e712e3375934a554470c9575","impliedFormat":1},{"version":"084d0df6805570b6dc6c8b49c3a71d5bdfe59606901e0026c63945b68d4b080a","impliedFormat":1},{"version":"32bd5e456193f931b2a59b68e3801a2a0943dc641330389afc38e8277875a6da","impliedFormat":1},{"version":"0f066f9654e700a9cf79c75553c934eb14296aa80583bd2b5d07e2d582a3f4ee","impliedFormat":1},{"version":"269c5d54104033b70331343bd931c9933852a882391ed6bd98c3d8b7d6465d22","impliedFormat":1},{"version":"a56b8577aaf471d9e60582065a8193269310e8cae48c1ce4111ed03216f5f715","impliedFormat":1},{"version":"486ae83cd51b813095f6716f06cc9b2cf480ad1d6c7f8ec59674d6c858cd2407","impliedFormat":1},{"version":"039f0a1f6d67514bbfea62ffbb0822007ce35ba180853ec9034431f60f63dbe6","impliedFormat":1},{"version":"fff527e2567a24dd634a30268f1aa8a220315fed9c513d70ee872e54f67f27f3","impliedFormat":1},{"version":"dbd0bf577d4ec8368f3456fba405dc1989ce343f6c7a13347dbabd363ec22b4f","impliedFormat":1},{"version":"919492794863d6badec9ec17490ca445c3d79adf5df102eaa6ba0241a287dc20","impliedFormat":1},{"version":"b7d1cdc9810b334734a7d607c195daa721df6d114d99e96d595ff52db1df627b","impliedFormat":1},{"version":"946cce58bd3eb8d6235e288023aac2a13427e07022e9771c5bbdfa8ad6377101","impliedFormat":1},{"version":"77282216c61bcef9a700db98e142301d5a7d988d3076286029da63e415e98a42","impliedFormat":1},{"version":"e4f9959716f2d0f9946e9b9502c8aadf87aae7e389e6e5be53c27c8cc0181bb6","impliedFormat":1},{"version":"75ff8ea2c0c632719c14f50849c1fc7aa2d49f42b08c54373688536b3f995ee7","impliedFormat":1},{"version":"85a915dbb768b89cb92f5e6c165d776bfebd065883c34fee4e0219c3ed321b47","impliedFormat":1},{"version":"83df2f39cb14971adea51d1c84e7d146a34e9b7f84ad118450a51bdc3138412c","impliedFormat":1},{"version":"96d6742b440a834780d550fffc57d94d0aece2e04e485bce8d817dc5fb9b05d7","impliedFormat":1},{"version":"bdb2b70c74908c92ec41d8dd8375a195cb3bb07523e4de642b2b2dfbde249ca6","impliedFormat":1},{"version":"7b329f4137a552073f504022acbf8cd90d49cc5e5529791bef508f76ff774854","impliedFormat":1},{"version":"f63bbbffcfc897d22f34cf19ae13405cd267b1783cd21ec47d8a2d02947c98c1","impliedFormat":1},{"version":"cef48408162200abaea0c3a1be25a41fcd1b4dc41c3b90be6a89dde5ca4375c0","impliedFormat":1},{"version":"9da2649fb89af9bd08b2215621ad1cfda50f798d0acbd0d5fee2274ee940c827","impliedFormat":1},{"version":"df55b9be6ba19a6f77487e09dc7a94d7c9bf66094d35ea168dbd4bac42c46b8f","impliedFormat":1},{"version":"595125f3e088b883d104622ef10e6b7d5875ff6976bbe4d7dca090a3e2dca513","impliedFormat":1},{"version":"737fc8159cb99bf39a201c4d7097e92ad654927da76a1297ace7ffe358a2eda3","impliedFormat":1},{"version":"e0d7eed4ba363df3faadb8e617f95f9fc8adfbb00b87db7ade4a1098d6cf1e90","impliedFormat":1},{"version":"676088e53ca31e9e21e53f5a8996345d1b8a7d153737208029db964279004c3e","impliedFormat":1},{"version":"de115595321ce012c456f512a799679bfc874f0ac0a4928a8429557bb25086aa","impliedFormat":1},{"version":"896e4b676a6f55ca66d40856b63ec2ff7f4f594d6350f8ae04eaee8876da0bc5","impliedFormat":1},{"version":"0524cab11ba9048d151d93cc666d3908fda329eec6b1642e9a936093e6d79f28","impliedFormat":1},{"version":"869073d7523e75f45bd65b2072865c60002d5e0cbd3d17831e999cf011312778","impliedFormat":1},{"version":"bc7b5906a6ce6c5744a640c314e020856be6c50a693e77dc12aff2d77b12ca76","impliedFormat":1},{"version":"56503e377bc1344f155e4e3115a772cb4e59350c0b8131e3e1fb2750ac491608","impliedFormat":1},{"version":"6b579287217ee1320ee1c6cfec5f6730f3a1f91daab000f7131558ee531b2bf8","impliedFormat":1},{"version":"2586bc43511ba0f0c4d8e35dacf25ed596dde8ec50b9598ecd80194af52f992f","impliedFormat":1},{"version":"a793636667598e739a52684033037a67dc2d9db37fab727623626ef19aa5abb9","impliedFormat":1},{"version":"b15d6238a86bc0fc2368da429249b96c260debc0cec3eb7b5f838ad32587c129","impliedFormat":1},{"version":"9a9fba3a20769b0a74923e7032997451b61c1bd371c519429b29019399040d74","impliedFormat":1},{"version":"4b10e2fe52cb61035e58df3f1fdd926dd0fe9cf1a2302f92916da324332fb4e0","impliedFormat":1},{"version":"d1092ae8d6017f359f4758115f588e089848cc8fb359f7ba045b1a1cf3668a49","impliedFormat":1},{"version":"ddae9195b0da7b25a585ef43365f4dc5204a746b155fbee71e6ee1a9193fb69f","impliedFormat":1},{"version":"32dbced998ce74c5e76ce87044d0b4071857576dde36b0c6ed1d5957ce9cf5b5","impliedFormat":1},{"version":"29befd9bb08a9ed1660fd7ac0bc2ad24a56da550b75b8334ac76c2cfceda974a","impliedFormat":1},{"version":"ed8a8dedbd26d5c101bcc2d1691535d1fd0470dc82d7e866391e9b31b851ea8c","impliedFormat":1},{"version":"0aba767f26742d337f50e46f702a95f83ce694101fa9b8455786928a5672bb9b","impliedFormat":1},{"version":"8db57d8da0ab49e839fb2d0874cfe456553077d387f423a7730c54ef5f494318","impliedFormat":1},{"version":"ecc1b8878c8033bde0204b85e26fe1af6847805427759e5723882c848a11e134","impliedFormat":1},{"version":"cfc9c32553ad3b5be38342bc8731397438a93531118e1a226a8c79ad255b4f0c","impliedFormat":1},{"version":"16e5b5b023c2a1119c1878a51714861c56255778de0a7fe378391876a15f7433","impliedFormat":1},{"version":"f65096bb6555aad0429c5b6b21b92683398434be9b2ce0d3a1fdbb651c1243f1","impliedFormat":1},{"version":"a090a8a3b0ef2cceeb089acf4df95df72e7d934215896afe264ff6f734d66d15","impliedFormat":1},{"version":"151f422f08c8ca67b77c5c39d49278b4df452ef409237c8219be109ae3cdae9d","impliedFormat":1},{"version":"412a06aa68e902bc67d69f381c06f8fd52497921c5746fabddadd44f624741f5","impliedFormat":1},{"version":"c469120d20804fda2fc836f4d7007dfd5c1cef70443868858cb524fd6e54def1","impliedFormat":1},{"version":"206e2b17dd95b470b46edfa21c0e57aeca03f79fe5db994c506e7c8a6cc6de0d","impliedFormat":1},{"version":"445f7bb9b132395763d2fd00e88167a7b7d5c514728cfe462c17d044fe9f27d2","signature":"5423eff0aeb3d2eba041721efabde15d1c06709724dea6ae79b48559f86ed9b8","affectsGlobalScope":true},{"version":"021b66c21e266bf897eefa1e41b21668059eab64ce7bdd4d5c425f9145bf6203","signature":"4355f2fcc7ced06180b6c8a4d33fc2b9d083eed850ca2eec64a9689bb1d502ef"},{"version":"1e45688ca2b75a50cf7032c972380760b37f404dbc11e6e7c69aabf8d597b032","signature":"cea47047c6bcf41628abd5e7a55c03ed9f1706cd8fd8880ac2ff32fa3a71a589"},{"version":"725586b511f51bca1589b2476a469a9335db4cb1fe1b8fd0e94c189d7335fa98","signature":"edac49118a9eb46d842c8d24a567e31f0290ecdf8d44a5fc78da3112c2fdda54"},{"version":"9be7cfc079aa51a357a4aa6ec55dfde1b7a2f70dfffd5d4ec91dfdfda7d4e20b","signature":"9a69602e1cbf7afe7ea8fa14121f7572f2bf024948fb2f6ad6dfaab26adc4978"},{"version":"29e2fffb6dcaf9a4cda61dbb7637421fff30e20021681874f0acdb83646a821d","signature":"6ec5edea89079b76d603c25fa0bbcbc1a0ef04e3c81f0d4d001c6a961830c19b"},{"version":"e27a640431efc9906d1b4ccba382bc2c5858f9ee304ad78e45bdecb367340613","affectsGlobalScope":true},{"version":"76292c6ef47b769a72de772e800eb08427c75cab39398fa0741d9f8b1fac5865","impliedFormat":1},{"version":"4cfa4ff43365d4be2e7e30b10fdb87b640b70937eba6c55dd3c8d167883c445d","impliedFormat":1},{"version":"5cfcb3a022da06031a63ca0c1a12b63d3b2b52d16309a856eb9de37ad2741182","impliedFormat":1},{"version":"f5e7925f0ce3a1671a7a2809ed2ec12312badb2834d8034a9e906c99546a7932","impliedFormat":1},{"version":"7a262b150b6f170ac6c555fd26909bc8e5ad0bb962537c5edbd1e10042b1b224","impliedFormat":1},{"version":"6a42594a49d1ab90a79287c9b1f52770dfe25c66a11e3730e02476ea4e3af322","impliedFormat":1},{"version":"b1aa6957cc9be4f2e9d8e2f3aab92978bd8854837771fda706b8eb4b1e2bbc96","impliedFormat":1},{"version":"cac1fd8a544e2f3f5fd047981156da014ca88503df42a8c4384581cf5a58b11c","impliedFormat":1},{"version":"1858da773f5eaa3f3c8dc07b401e85d3057ff01771c84c905c11a34472487742","impliedFormat":1},{"version":"19c3e56faf9a401b93ec37507d97572d295f4bb00a775d0455bc920d58e58250","affectsGlobalScope":true,"impliedFormat":1},{"version":"01ea032563dc4d47643b8e88ec094bfe5b2b274fcfd59f446369b18c963ade93","impliedFormat":1},{"version":"6697273e52441af8e34ecd87f018e292a75c3c5c022d4b4dfe93874751314a25","impliedFormat":1},{"version":"c179a885e989742ad1f1b58024a0674810bbca1a771ad82f543dc68d5468d396","impliedFormat":1},{"version":"64730ab9b396c96b2a01e3307d1ce8a9eb2a4c8e8ac82dd0eb4d6e7ddd3081a8","impliedFormat":1},{"version":"0f4e6fabcde74a53922bdb5d18fb99f2d69b92e01e9afa1816ef0680a9d5fed6","impliedFormat":1},{"version":"719ad5dd3a1e287cb54b4377967f99813e8144c61e1c954c585a644df3d7e87f","impliedFormat":1},{"version":"46395a1fc2ccf2a2a4755c858591504670956fd211b3ea959c2ea69effb9e5dd","signature":"a2c54199b883521001e7eb0e6b27594dcb4982a3ce4ab9ab9ad2b121f9ea31b9"},{"version":"7235e9000943436a04deeb504afbf16beda154bce1060d8648f33bc6324e8029","signature":"cc836371de1aa7a5171ed9f40e2019e9b1789109a843c8a5ccc2751db65eb4a5"},{"version":"6526335e5433fc12580b5560c752fd7451ba79db068d3e1ac81170c5fcad27f6","signature":"173ae4741917fa7d2a79894a2af6d029ebb8d168c9066caae4bc4eaea856f9e1"},{"version":"b35b2e64b9e2de378f92bb2369355c78fcaee84f89ef0820c2d69b30960c59ca","signature":"aa42da361d18a38554e654ed9818f1ba2869021235ec66d431739005b626c09b"},{"version":"844f2848bfe787dc98769ea4edc2e30371a5bfb15ef9f3e6afd625e76f6dc5c8","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","affectsGlobalScope":true},{"version":"1c18d5790d0f5e15e84827cbf08982aef0339fb034b7971cff0535fc20a77879","signature":"68724f2c23cf02888072a2830ca5b336b6af536abce6094d3392e884c9293e52"},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1}],"root":[[79,83],[183,189],[206,211]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"allowUnreachableCode":false,"allowUnusedLabels":false,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":2,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noImplicitUseStrict":false,"noStrictGenericChecks":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./typescript","rootDir":"../src","skipLibCheck":true,"strict":true,"target":99,"verbatimModuleSyntax":true},"referencedMap":[[215,1],[108,2],[107,3],[220,4],[92,5],[219,6],[217,7],[218,8],[216,9],[192,10],[194,11],[205,12],[195,13],[191,13],[196,13],[197,13],[200,14],[199,15],[202,14],[204,16],[203,17],[117,18],[113,19],[120,20],[123,21],[125,22],[126,23],[146,24],[128,25],[130,26],[132,27],[133,28],[134,29],[135,30],[101,30],[136,31],[103,32],[137,33],[138,23],[139,34],[140,35],[98,36],[143,37],[145,38],[144,39],[142,40],[102,31],[99,41],[100,42],[129,43],[121,43],[122,44],[106,45],[149,43],[150,46],[152,26],[109,47],[111,48],[154,49],[148,50],[159,51],[110,28],[163,52],[161,28],[162,50],[165,53],[167,53],[166,53],[116,53],[115,54],[114,55],[112,56],[169,57],[170,58],[96,50],[171,21],[172,21],[181,59],[174,60],[175,43],[89,61],[182,62],[86,58],[87,63],[179,59],[97,41],[95,28],[80,64],[82,64],[188,65],[209,66],[183,59],[186,67],[184,68],[185,69],[211,59],[208,70],[207,64],[206,71]],"latestChangedDtsFile":"./typescript/turbomodule/NativeNitroModules.web.d.ts","version":"5.8.3"}
@@ -1 +1 @@
1
- {"version":3,"file":"getHostComponent.d.ts","sourceRoot":"","sources":["../../../src/views/getHostComponent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,KAAK,aAAa,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAA;AAI3E,OAAO,KAAK,EACV,UAAU,EACV,iBAAiB,EACjB,eAAe,EAChB,MAAM,cAAc,CAAA;AAErB,KAAK,cAAc,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,IACxB,OAAO,GACP;IACE,IAAI,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,KAAK,OAAO,CAAA;IACpC,OAAO,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,CAAC,CAAA;CACzB,CAAA;AAEL,MAAM,WAAW,UAAU,CAAC,KAAK;IAC/B,eAAe,EAAE,MAAM,CAAA;IACvB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,kBAAkB,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IAC3C,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IACzC,eAAe,EAAE;SACd,CAAC,IAAI,MAAM,KAAK,GAAG,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;KAC7C,CAAA;CACF;AAED;;GAEG;AACH,UAAU,sBAAsB,CAAC,OAAO;IACtC;;;;;;;;;;;;;;;;;;OAkBG;IACH,SAAS,CAAC,EAAE,CAAC,GAAG,EAAE,OAAO,KAAK,IAAI,CAAA;CACnC;AAED;;;;;;;;;;;GAWG;AACH,MAAM,MAAM,wBAAwB,CAAC,CAAC,SAAS,QAAQ,GAAG,SAAS,IAAI;IAAE,CAAC,EAAE,CAAC,CAAA;CAAE,CAAA;AAK/E,KAAK,sBAAsB,CAAC,KAAK,IAAI;KAClC,CAAC,IAAI,MAAM,KAAK,GAAG,KAAK,CAAC,CAAC,CAAC,SAAS,QAAQ,GACzC,wBAAwB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAClC,KAAK,CAAC,CAAC,CAAC,SAAS,QAAQ,GAAG,SAAS,GACnC,wBAAwB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAClC,KAAK,CAAC,CAAC,CAAC;CACf,CAAA;AAED;;;;;;;GAOG;AACH,MAAM,MAAM,eAAe,CACzB,KAAK,SAAS,eAAe,EAC7B,OAAO,SAAS,iBAAiB,IAC/B,aAAa,CACf,sBAAsB,CACpB,sBAAsB,CAAC,UAAU,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC,GAAG,KAAK,CAC3D,GACC,SAAS,CACZ,CAAA;AAoBD;;;;GAIG;AACH,wBAAgB,gBAAgB,CAC9B,KAAK,SAAS,eAAe,EAC7B,OAAO,SAAS,iBAAiB,EAEjC,IAAI,EAAE,MAAM,EACZ,aAAa,EAAE,MAAM,UAAU,CAAC,KAAK,CAAC,GACrC,eAAe,CAAC,KAAK,EAAE,OAAO,CAAC,CAWjC;AAED;;;;GAIG;AACH,wBAAgB,QAAQ,CAAC,CAAC,EACxB,IAAI,EAAE,CAAC,GACN,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,GAAG,wBAAwB,CAAC,CAAC,CAAC,GAAG,CAAC,CAAA"}
1
+ {"version":3,"file":"getHostComponent.d.ts","sourceRoot":"","sources":["../../../src/views/getHostComponent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,KAAK,aAAa,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAA;AAI3E,OAAO,KAAK,EACV,UAAU,EACV,iBAAiB,EACjB,eAAe,EAChB,MAAM,cAAc,CAAA;AAErB,KAAK,cAAc,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,IACxB,OAAO,GACP;IACE,IAAI,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,KAAK,OAAO,CAAA;IACpC,OAAO,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,CAAC,CAAA;CACzB,CAAA;AAEL,MAAM,WAAW,UAAU,CAAC,KAAK;IAC/B,eAAe,EAAE,MAAM,CAAA;IACvB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,kBAAkB,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IAC3C,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IACzC,eAAe,EAAE;SACd,CAAC,IAAI,MAAM,KAAK,GAAG,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;KAC7C,CAAA;CACF;AAUD;;GAEG;AACH,UAAU,sBAAsB,CAAC,OAAO;IACtC;;;;;;;;;;;;;;;;;;OAkBG;IACH,SAAS,CAAC,EAAE,CAAC,GAAG,EAAE,OAAO,KAAK,IAAI,CAAA;CACnC;AAED;;;;;;;;;;;GAWG;AACH,MAAM,MAAM,wBAAwB,CAAC,CAAC,SAAS,QAAQ,GAAG,SAAS,IAAI;IAAE,CAAC,EAAE,CAAC,CAAA;CAAE,CAAA;AAK/E,KAAK,sBAAsB,CAAC,KAAK,IAAI;KAClC,CAAC,IAAI,MAAM,KAAK,GAAG,KAAK,CAAC,CAAC,CAAC,SAAS,QAAQ,GACzC,wBAAwB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAClC,KAAK,CAAC,CAAC,CAAC,SAAS,QAAQ,GAAG,SAAS,GACnC,wBAAwB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAClC,KAAK,CAAC,CAAC,CAAC;CACf,CAAA;AAED;;;;;;;GAOG;AACH,MAAM,MAAM,eAAe,CACzB,KAAK,SAAS,eAAe,EAC7B,OAAO,SAAS,iBAAiB,IAC/B,aAAa,CACf,sBAAsB,CACpB,sBAAsB,CAAC,UAAU,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC,GAAG,KAAK,CAC3D,GACC,SAAS,CACZ,CAAA;AAoBD;;;;GAIG;AACH,wBAAgB,gBAAgB,CAC9B,KAAK,SAAS,eAAe,EAC7B,OAAO,SAAS,iBAAiB,EAEjC,IAAI,EAAE,MAAM,EACZ,aAAa,EAAE,MAAM,UAAU,CAAC,KAAK,CAAC,GACrC,eAAe,CAAC,KAAK,EAAE,OAAO,CAAC,CAWjC;AAED;;;;GAIG;AACH,wBAAgB,QAAQ,CAAC,CAAC,EACxB,IAAI,EAAE,CAAC,GACN,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,GAAG,wBAAwB,CAAC,CAAC,CAAC,GAAG,CAAC,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-nitro-modules",
3
- "version": "0.33.2",
3
+ "version": "0.33.3",
4
4
  "description": "Insanely fast native C++, Swift or Kotlin modules with a statically compiled binding layer to JSI.",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -73,8 +73,8 @@
73
73
  "@types/jest": "*",
74
74
  "@types/react": "*",
75
75
  "jest": "*",
76
- "react": "19.1.1",
77
- "react-native": "0.82.0",
76
+ "react": "19.2.0",
77
+ "react-native": "0.83.0",
78
78
  "react-native-builder-bob": "^0.37.0",
79
79
  "react-native-worklets": "^0.7.2"
80
80
  },
@@ -1,5 +1,5 @@
1
1
  import { Platform, type HostComponent, type ViewProps } from 'react-native'
2
- // @ts-expect-error this unfortunately isn't typed or default-exported.
2
+ // TODO: Migrate to the official export of `NativeComponentRegistry` from `react-native` once react-native 0.83.0 becomes more established
3
3
  // eslint-disable-next-line @react-native/no-deep-imports
4
4
  import * as NativeComponentRegistry from 'react-native/Libraries/NativeComponent/NativeComponentRegistry'
5
5
  import type {
@@ -24,6 +24,14 @@ export interface ViewConfig<Props> {
24
24
  [K in keyof Props]: AttributeValue<Props[K]>
25
25
  }
26
26
  }
27
+ type ReactNativeViewConfig = ReturnType<
28
+ Parameters<typeof NativeComponentRegistry.get>[1]
29
+ >
30
+
31
+ function typesafe<Props>(config: ViewConfig<Props>): ReactNativeViewConfig {
32
+ // TODO: Remove this unsafe cast and make it safe
33
+ return config as ReactNativeViewConfig
34
+ }
27
35
 
28
36
  /**
29
37
  * Represents all default props a Nitro HybridView has.
@@ -132,7 +140,7 @@ export function getHostComponent<
132
140
  return NativeComponentRegistry.get(name, () => {
133
141
  const config = getViewConfig()
134
142
  config.validAttributes = wrapValidAttributes(config.validAttributes)
135
- return config
143
+ return typesafe(config)
136
144
  })
137
145
  }
138
146