react-shared-states 1.0.22 → 1.0.23

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.
@@ -58,7 +58,7 @@ export declare const sharedSubscriptionsApi: SharedSubscriptionsApi;
58
58
  interface SharedSubscriptionCreated<T> extends SharedCreated {
59
59
  subscriber: Subscriber<T>;
60
60
  }
61
- export declare const createSharedSubscription: <T, Args extends unknown[]>(subscriber: Subscriber<T>, scopeName?: Prefix) => SharedSubscriptionCreated<T>;
61
+ export declare const createSharedSubscription: <T>(subscriber: Subscriber<T>, scopeName?: Prefix) => SharedSubscriptionCreated<T>;
62
62
  export type SharedSubscriptionStateReturn<T> = {
63
63
  readonly state: NonNullable<SharedSubscriptionValue<T>>;
64
64
  readonly trigger: () => void;
package/dist/main.esm.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * react-shared-states v1.0.22
2
+ * react-shared-states v1.0.23
3
3
  * (c) Hichem Taboukouyout
4
4
  * Released under the MIT License.
5
5
  * Github: github.com/HichemTab-tech/react-shared-states
package/dist/main.min.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * react-shared-states v1.0.22
2
+ * react-shared-states v1.0.23
3
3
  * (c) Hichem Taboukouyout
4
4
  * Released under the MIT License.
5
5
  * Github: github.com/HichemTab-tech/react-shared-states
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-shared-states",
3
- "version": "1.0.22",
3
+ "version": "1.0.23",
4
4
  "type": "module",
5
5
  "description": "Global state made as simple as useState, with zero config, built-in async caching, and automatic scoping.",
6
6
  "keywords": [