esoftplay 0.0.128-z → 0.0.129

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.
package/bin/router.js CHANGED
@@ -451,7 +451,7 @@ declare module "esoftplay" {
451
451
  }
452
452
 
453
453
  interface useGlobalSubscribeReturn {
454
- getValue: (value?: any) => void,
454
+ getValue: () => any,
455
455
  reset: () => void,
456
456
  useSubscribe: Function,
457
457
  trigger: (newValue?: any) => void
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esoftplay",
3
- "version": "0.0.128-z",
3
+ "version": "0.0.129",
4
4
  "description": "embedding data from esoftplay framework (web based) into mobile app",
5
5
  "main": "cache/index.js",
6
6
  "types": "../../index.d.ts",
package/subscribe.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  import React from 'react';
4
4
 
5
5
  export interface useGlobalSubscriberReturn {
6
- getValue: (value?: any) => void,
6
+ getValue: () => any,
7
7
  reset: () => void,
8
8
  useSubscribe: Function,
9
9
  trigger: (newValue?: any) => void