Lines Matching refs:moduleName
12 Object.keys(NativeProxy[exportedMethodsKey]).forEach((moduleName) => {
14 NativeModulesProxy[moduleName] = NativeProxy[modulesConstantsKey][moduleName] || {};
16 NativeProxy[exportedMethodsKey][moduleName].forEach((methodInfo) => {
17 NativeModulesProxy[moduleName][methodInfo.name] = (...args) => {
20 return ExpoNativeProxy.callMethod(moduleName, methodInfo.name, args);
26 …return Promise.reject(new Error(`Native method ${moduleName}.${methodInfo.name} expects ${argument…
28 return LegacyNativeProxy.callMethod(moduleName, key, args);
42 …NativeModulesProxy[moduleName].addListener = (...args) => NativeModules.EXReactNativeEventEmitter.…
43 …ativeModulesProxy[moduleName].removeListeners = (...args) => NativeModules.EXReactNativeEventEmitt…
49 NativeModulesProxy[moduleName].addListener = () => { };
50 NativeModulesProxy[moduleName].removeListeners = () => { };