@onekeyfe/react-native-background-thread 1.1.7 → 1.1.9

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.
@@ -11,10 +11,12 @@ class BackgroundThreadModule(reactContext: ReactApplicationContext) :
11
11
  return NAME
12
12
  }
13
13
 
14
- // Example method
15
- // See https://reactnative.dev/docs/native-modules-android
16
- override fun multiply(a: Double, b: Double): Double {
17
- return a * b
14
+ override fun postBackgroundMessage(message: String) {
15
+ // TODO: Implement postBackgroundMessage
16
+ }
17
+
18
+ override fun startBackgroundRunnerWithEntryURL(entryURL: String) {
19
+ // TODO: Implement startBackgroundRunnerWithEntryURL
18
20
  }
19
21
 
20
22
  companion object {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onekeyfe/react-native-background-thread",
3
- "version": "1.1.7",
3
+ "version": "1.1.9",
4
4
  "description": "react-native-background-thread",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",