@xmachines/docs 1.0.0-beta.15 → 1.0.0-beta.17

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 (197) hide show
  1. package/api/@xmachines/play/README.md +56 -17
  2. package/api/@xmachines/play/classes/PlayError.md +240 -0
  3. package/api/@xmachines/play/type-aliases/PlayEvent.md +4 -4
  4. package/api/@xmachines/play-actor/README.md +32 -31
  5. package/api/@xmachines/play-actor/classes/AbstractActor.md +65 -53
  6. package/api/@xmachines/play-actor/interfaces/PlaySpec.md +37 -0
  7. package/api/@xmachines/play-actor/interfaces/Routable.md +5 -4
  8. package/api/@xmachines/play-actor/interfaces/ViewMetadata.md +6 -6
  9. package/api/@xmachines/play-actor/interfaces/Viewable.md +8 -8
  10. package/api/@xmachines/play-dom/README.md +36 -0
  11. package/api/@xmachines/play-dom/classes/PlayRenderer.md +83 -0
  12. package/api/@xmachines/play-dom/functions/connectRenderer.md +51 -0
  13. package/api/@xmachines/play-dom/functions/renderSpec.md +28 -0
  14. package/api/@xmachines/play-dom/interfaces/ConnectRendererOptions.md +18 -0
  15. package/api/@xmachines/play-dom/interfaces/DomRenderContext.md +18 -0
  16. package/api/@xmachines/play-dom/interfaces/PlayDomOptions.md +14 -0
  17. package/api/@xmachines/play-dom/type-aliases/DomComponentRenderer.md +23 -0
  18. package/api/@xmachines/play-dom/type-aliases/DomRegistry.md +11 -0
  19. package/api/@xmachines/play-react/README.md +226 -305
  20. package/api/@xmachines/play-react/classes/PlayErrorBoundary.md +12 -38
  21. package/api/@xmachines/play-react/functions/defineRegistry.md +47 -0
  22. package/api/@xmachines/play-react/functions/useActor.md +13 -0
  23. package/api/@xmachines/play-react/functions/useSignalEffect.md +1 -1
  24. package/api/@xmachines/play-react/functions/useStateBinding.md +32 -0
  25. package/api/@xmachines/play-react/interfaces/ComponentContext.md +35 -0
  26. package/api/@xmachines/play-react/interfaces/PlayErrorBoundaryProps.md +4 -4
  27. package/api/@xmachines/play-react/interfaces/PlayErrorBoundaryState.md +3 -3
  28. package/api/@xmachines/play-react/interfaces/PlayRendererProps.md +15 -7
  29. package/api/@xmachines/play-react/type-aliases/ComponentFn.md +34 -0
  30. package/api/@xmachines/play-react/type-aliases/PlayActor.md +9 -0
  31. package/api/@xmachines/play-react/variables/PlayRenderer.md +18 -30
  32. package/api/@xmachines/play-react-router/classes/ReactRouterBridge.md +32 -32
  33. package/api/@xmachines/play-react-router/classes/RouteMap.md +5 -5
  34. package/api/@xmachines/play-react-router/functions/PlayRouterProvider.md +11 -5
  35. package/api/@xmachines/play-react-router/functions/createRouteMapFromTree.md +1 -1
  36. package/api/@xmachines/play-react-router/interfaces/PlayRouterProviderProps.md +14 -8
  37. package/api/@xmachines/play-react-router/interfaces/RouteMapping.md +3 -3
  38. package/api/@xmachines/play-router/README.md +51 -0
  39. package/api/@xmachines/play-router/classes/BaseRouteMap.md +6 -6
  40. package/api/@xmachines/play-router/classes/RouterBridgeBase.md +44 -40
  41. package/api/@xmachines/play-router/functions/buildRouteTree.md +1 -1
  42. package/api/@xmachines/play-router/functions/connectRouter.md +1 -1
  43. package/api/@xmachines/play-router/functions/crawlMachine.md +1 -1
  44. package/api/@xmachines/play-router/functions/createBrowserHistory.md +4 -1
  45. package/api/@xmachines/play-router/functions/createRouteMap.md +3 -3
  46. package/api/@xmachines/play-router/functions/createRouter.md +1 -1
  47. package/api/@xmachines/play-router/functions/detectDuplicateRoutes.md +1 -1
  48. package/api/@xmachines/play-router/functions/extractMachineRoutes.md +1 -1
  49. package/api/@xmachines/play-router/functions/extractRoute.md +1 -1
  50. package/api/@xmachines/play-router/functions/findRouteById.md +1 -1
  51. package/api/@xmachines/play-router/functions/findRouteByPath.md +1 -1
  52. package/api/@xmachines/play-router/functions/getNavigableRoutes.md +1 -1
  53. package/api/@xmachines/play-router/functions/getRoutableRoutes.md +1 -1
  54. package/api/@xmachines/play-router/functions/routeExists.md +1 -1
  55. package/api/@xmachines/play-router/functions/validateRouteFormat.md +1 -1
  56. package/api/@xmachines/play-router/functions/validateStateExists.md +1 -1
  57. package/api/@xmachines/play-router/interfaces/BaseRouteMapping.md +3 -3
  58. package/api/@xmachines/play-router/interfaces/BrowserHistory.md +19 -15
  59. package/api/@xmachines/play-router/interfaces/BrowserWindow.md +14 -14
  60. package/api/@xmachines/play-router/interfaces/ConnectRouterOptions.md +6 -6
  61. package/api/@xmachines/play-router/interfaces/PlayRouteEvent.md +6 -6
  62. package/api/@xmachines/play-router/interfaces/RouteInfo.md +8 -8
  63. package/api/@xmachines/play-router/interfaces/RouteMap.md +4 -4
  64. package/api/@xmachines/play-router/interfaces/RouteNode.md +10 -10
  65. package/api/@xmachines/play-router/interfaces/RouteObject.md +2 -2
  66. package/api/@xmachines/play-router/interfaces/RouteTree.md +4 -4
  67. package/api/@xmachines/play-router/interfaces/RouteWatcherHandle.md +55 -0
  68. package/api/@xmachines/play-router/interfaces/RouterBridge.md +3 -3
  69. package/api/@xmachines/play-router/interfaces/StateVisit.md +4 -4
  70. package/api/@xmachines/play-router/interfaces/VanillaRouter.md +4 -4
  71. package/api/@xmachines/play-router/type-aliases/RouteMetadata.md +1 -1
  72. package/api/@xmachines/play-signals/README.md +22 -10
  73. package/api/@xmachines/play-signals/functions/watchSignal.md +35 -0
  74. package/api/@xmachines/play-signals/interfaces/ComputedOptions.md +2 -2
  75. package/api/@xmachines/play-signals/interfaces/SignalComputed.md +2 -2
  76. package/api/@xmachines/play-signals/interfaces/SignalOptions.md +2 -2
  77. package/api/@xmachines/play-signals/interfaces/SignalState.md +3 -3
  78. package/api/@xmachines/play-signals/interfaces/SignalWatcher.md +4 -4
  79. package/api/@xmachines/play-signals/namespaces/Signal/classes/Computed.md +3 -9
  80. package/api/@xmachines/play-signals/namespaces/Signal/classes/State.md +3 -11
  81. package/api/@xmachines/play-signals/namespaces/Signal/interfaces/Options.md +5 -7
  82. package/api/@xmachines/play-signals/namespaces/Signal/namespaces/subtle/classes/Watcher.md +3 -13
  83. package/api/@xmachines/play-signals/namespaces/Signal/namespaces/subtle/functions/currentComputed.md +0 -2
  84. package/api/@xmachines/play-signals/namespaces/Signal/namespaces/subtle/functions/hasSinks.md +0 -2
  85. package/api/@xmachines/play-signals/namespaces/Signal/namespaces/subtle/functions/hasSources.md +0 -2
  86. package/api/@xmachines/play-signals/namespaces/Signal/namespaces/subtle/functions/introspectSinks.md +0 -2
  87. package/api/@xmachines/play-signals/namespaces/Signal/namespaces/subtle/functions/introspectSources.md +0 -2
  88. package/api/@xmachines/play-signals/namespaces/Signal/namespaces/subtle/functions/untrack.md +0 -2
  89. package/api/@xmachines/play-signals/namespaces/Signal/namespaces/subtle/variables/unwatched.md +0 -2
  90. package/api/@xmachines/play-signals/namespaces/Signal/namespaces/subtle/variables/watched.md +0 -2
  91. package/api/@xmachines/play-signals/namespaces/Signal/variables/isComputed.md +0 -2
  92. package/api/@xmachines/play-signals/namespaces/Signal/variables/isState.md +0 -2
  93. package/api/@xmachines/play-signals/namespaces/Signal/variables/isWatcher.md +0 -2
  94. package/api/@xmachines/play-signals/type-aliases/WatcherNotify.md +1 -1
  95. package/api/@xmachines/play-solid/README.md +193 -219
  96. package/api/@xmachines/play-solid/functions/defineRegistry.md +47 -0
  97. package/api/@xmachines/play-solid/functions/useActor.md +13 -0
  98. package/api/@xmachines/play-solid/functions/useStateBinding.md +23 -0
  99. package/api/@xmachines/play-solid/interfaces/ComponentContext.md +35 -0
  100. package/api/@xmachines/play-solid/interfaces/PlayRendererProps.md +15 -7
  101. package/api/@xmachines/play-solid/type-aliases/ComponentFn.md +34 -0
  102. package/api/@xmachines/play-solid/type-aliases/PlayActor.md +9 -0
  103. package/api/@xmachines/play-solid/variables/PlayRenderer.md +15 -43
  104. package/api/@xmachines/play-solid-router/README.md +2 -0
  105. package/api/@xmachines/play-solid-router/classes/RouteMap.md +6 -6
  106. package/api/@xmachines/play-solid-router/classes/SolidRouterBridge.md +37 -37
  107. package/api/@xmachines/play-solid-router/functions/PlayRouterProvider.md +11 -5
  108. package/api/@xmachines/play-solid-router/functions/createRouteMap.md +1 -1
  109. package/api/@xmachines/play-solid-router/interfaces/AbstractActor.md +65 -51
  110. package/api/@xmachines/play-solid-router/interfaces/PlayRouterProviderProps.md +14 -8
  111. package/api/@xmachines/play-solid-router/interfaces/RouteMapping.md +3 -3
  112. package/api/@xmachines/play-solid-router/type-aliases/RoutableActor.md +3 -1
  113. package/api/@xmachines/play-solid-router/type-aliases/SolidRouterHooks.md +4 -4
  114. package/api/@xmachines/play-tanstack-react-router/README.md +1 -5
  115. package/api/@xmachines/play-tanstack-react-router/classes/RouteMap.md +5 -5
  116. package/api/@xmachines/play-tanstack-react-router/classes/TanStackReactRouterBridge.md +45 -33
  117. package/api/@xmachines/play-tanstack-react-router/functions/PlayRouterProvider.md +11 -5
  118. package/api/@xmachines/play-tanstack-react-router/functions/createRouteMap.md +2 -2
  119. package/api/@xmachines/play-tanstack-react-router/functions/createRouteMapFromTree.md +1 -1
  120. package/api/@xmachines/play-tanstack-react-router/functions/extractParams.md +1 -1
  121. package/api/@xmachines/play-tanstack-react-router/functions/extractQueryParams.md +1 -1
  122. package/api/@xmachines/play-tanstack-react-router/interfaces/PlayRouterProviderProps.md +14 -8
  123. package/api/@xmachines/play-tanstack-react-router/interfaces/RouteMapping.md +3 -3
  124. package/api/@xmachines/play-tanstack-react-router/interfaces/RouteNavigateEvent.md +3 -3
  125. package/api/@xmachines/play-tanstack-react-router/type-aliases/TanStackRouterInstance.md +1 -1
  126. package/api/@xmachines/play-tanstack-react-router/type-aliases/TanStackRouterLike.md +24 -4
  127. package/api/@xmachines/play-tanstack-solid-router/classes/RouteMap.md +6 -6
  128. package/api/@xmachines/play-tanstack-solid-router/classes/SolidRouterBridge.md +33 -33
  129. package/api/@xmachines/play-tanstack-solid-router/functions/PlayRouterProvider.md +11 -5
  130. package/api/@xmachines/play-tanstack-solid-router/functions/createRouteMap.md +1 -1
  131. package/api/@xmachines/play-tanstack-solid-router/interfaces/PlayRouterProviderProps.md +14 -8
  132. package/api/@xmachines/play-tanstack-solid-router/interfaces/RouteMapping.md +3 -3
  133. package/api/@xmachines/play-tanstack-solid-router/type-aliases/RoutableActor.md +3 -1
  134. package/api/@xmachines/play-tanstack-solid-router/type-aliases/TanStackRouterInstance.md +1 -1
  135. package/api/@xmachines/play-tanstack-solid-router/type-aliases/TanStackRouterLike.md +4 -4
  136. package/api/@xmachines/play-vue/README.md +216 -209
  137. package/api/@xmachines/play-vue/functions/defineRegistry.md +32 -0
  138. package/api/@xmachines/play-vue/functions/useActor.md +13 -0
  139. package/api/@xmachines/play-vue/functions/useStateBinding.md +30 -0
  140. package/api/@xmachines/play-vue/interfaces/ComponentContext.md +35 -0
  141. package/api/@xmachines/play-vue/interfaces/PlayRendererProps.md +14 -6
  142. package/api/@xmachines/play-vue/type-aliases/ComponentFn.md +33 -0
  143. package/api/@xmachines/play-vue/type-aliases/PlayActor.md +9 -0
  144. package/api/@xmachines/play-vue/variables/PlayRenderer.md +1 -1
  145. package/api/@xmachines/play-vue-router/README.md +21 -0
  146. package/api/@xmachines/play-vue-router/classes/RouteMap.md +7 -7
  147. package/api/@xmachines/play-vue-router/classes/VueBaseRouteMap.md +7 -7
  148. package/api/@xmachines/play-vue-router/classes/VueRouterBridge.md +46 -49
  149. package/api/@xmachines/play-vue-router/functions/createRouteMap.md +1 -1
  150. package/api/@xmachines/play-vue-router/interfaces/RouteMapping.md +4 -4
  151. package/api/@xmachines/play-vue-router/type-aliases/RoutableActor.md +3 -1
  152. package/api/@xmachines/play-vue-router/variables/PlayRouterProvider.md +7 -1
  153. package/api/@xmachines/play-xstate/README.md +250 -107
  154. package/api/@xmachines/play-xstate/classes/PlayerActor.md +77 -55
  155. package/api/@xmachines/play-xstate/functions/buildRouteUrl.md +24 -18
  156. package/api/@xmachines/play-xstate/functions/composeGuards.md +1 -1
  157. package/api/@xmachines/play-xstate/functions/composeGuardsOr.md +1 -1
  158. package/api/@xmachines/play-xstate/functions/definePlayer.md +12 -61
  159. package/api/@xmachines/play-xstate/functions/deriveRoute.md +1 -1
  160. package/api/@xmachines/play-xstate/functions/eventMatches.md +1 -1
  161. package/api/@xmachines/play-xstate/functions/formatPlayRouteTransitions.md +1 -1
  162. package/api/@xmachines/play-xstate/functions/hasContext.md +1 -1
  163. package/api/@xmachines/play-xstate/functions/isAbsoluteRoute.md +1 -1
  164. package/api/@xmachines/play-xstate/functions/negateGuard.md +1 -1
  165. package/api/@xmachines/play-xstate/functions/stateMatches.md +1 -1
  166. package/api/@xmachines/play-xstate/interfaces/PlayerConfig.md +9 -13
  167. package/api/@xmachines/play-xstate/interfaces/PlayerFactoryResumeOptions.md +22 -0
  168. package/api/@xmachines/play-xstate/interfaces/PlayerOptions.md +8 -9
  169. package/api/@xmachines/play-xstate/interfaces/RouteContext.md +5 -5
  170. package/api/@xmachines/play-xstate/type-aliases/ComposedGuard.md +1 -1
  171. package/api/@xmachines/play-xstate/type-aliases/Guard.md +1 -1
  172. package/api/@xmachines/play-xstate/type-aliases/GuardArray.md +1 -1
  173. package/api/@xmachines/play-xstate/type-aliases/PlayerFactory.md +6 -5
  174. package/api/@xmachines/play-xstate/type-aliases/RouteMachineConfig.md +14 -4
  175. package/api/@xmachines/play-xstate/type-aliases/RouteStateNode.md +19 -4
  176. package/api/@xmachines/shared/functions/defineXmVitestConfig.md +2 -2
  177. package/api/@xmachines/shared/functions/xmAliases.md +1 -1
  178. package/api/README.md +1 -1
  179. package/api/llms.txt +11 -5
  180. package/examples/README.md +20 -6
  181. package/examples/multi-router-integration.md +33 -24
  182. package/examples/routing-patterns.md +2 -3
  183. package/package.json +3 -3
  184. package/api/@xmachines/play-catalog/README.md +0 -331
  185. package/api/@xmachines/play-catalog/functions/defineCatalog.md +0 -98
  186. package/api/@xmachines/play-catalog/functions/defineComponents.md +0 -134
  187. package/api/@xmachines/play-catalog/type-aliases/Catalog.md +0 -48
  188. package/api/@xmachines/play-catalog/type-aliases/ComponentsFor.md +0 -20
  189. package/api/@xmachines/play-catalog/type-aliases/InferComponentProps.md +0 -65
  190. package/api/@xmachines/play-catalog/type-aliases/NoExtraKeys.md +0 -17
  191. package/api/@xmachines/play-xstate/functions/mergeViewProps.md +0 -26
  192. package/api/@xmachines/play-xstate/functions/validateComponentBinding.md +0 -39
  193. package/api/@xmachines/play-xstate/functions/validateViewProps.md +0 -80
  194. package/api/@xmachines/play-xstate/interfaces/CatalogEntry.md +0 -16
  195. package/api/@xmachines/play-xstate/type-aliases/Catalog.md +0 -21
  196. package/api/@xmachines/play-xstate/type-aliases/ValidationResult.md +0 -17
  197. package/api/@xmachines/play-xstate/type-aliases/ViewMergeContext.md +0 -35
@@ -2,8 +2,6 @@
2
2
 
3
3
  # Class: State\<T\>
4
4
 
5
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:8
6
-
7
5
  ## Type Parameters
8
6
 
9
7
  | Type Parameter |
@@ -18,8 +16,6 @@ Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:8
18
16
  new State<T>(initialValue, options?): State<T>;
19
17
  ```
20
18
 
21
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:11
22
-
23
19
  #### Parameters
24
20
 
25
21
  | Parameter | Type |
@@ -33,9 +29,9 @@ Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:11
33
29
 
34
30
  ## Properties
35
31
 
36
- | Property | Modifier | Type | Defined in |
37
- | ----------------------------------- | ---------- | ------------------- | ------------------------------------------------- |
38
- | <a id="property-node"></a> `[NODE]` | `readonly` | `SignalNode`\<`T`\> | node_modules/signal-polyfill/dist/wrapper.d.ts:10 |
32
+ | Property | Modifier | Type | Defined in |
33
+ | ----------------------------------- | ---------- | ------------------- | ---------- |
34
+ | <a id="property-node"></a> `[NODE]` | `readonly` | `SignalNode`\<`T`\> | - |
39
35
 
40
36
  ## Methods
41
37
 
@@ -45,8 +41,6 @@ Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:11
45
41
  get(): T;
46
42
  ```
47
43
 
48
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:12
49
-
50
44
  #### Returns
51
45
 
52
46
  `T`
@@ -59,8 +53,6 @@ Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:12
59
53
  set(newValue): void;
60
54
  ```
61
55
 
62
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:13
63
-
64
56
  #### Parameters
65
57
 
66
58
  | Parameter | Type |
@@ -2,8 +2,6 @@
2
2
 
3
3
  # Interface: Options\<T\>
4
4
 
5
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:41
6
-
7
5
  ## Type Parameters
8
6
 
9
7
  | Type Parameter |
@@ -12,8 +10,8 @@ Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:41
12
10
 
13
11
  ## Properties
14
12
 
15
- | Property | Type | Defined in |
16
- | ---------------------------------------------- | -------------------------------- | ------------------------------------------------- |
17
- | <a id="property-unwatched"></a> `[unwatched]?` | (`this`) => `void` | node_modules/signal-polyfill/dist/wrapper.d.ts:44 |
18
- | <a id="property-watched"></a> `[watched]?` | (`this`) => `void` | node_modules/signal-polyfill/dist/wrapper.d.ts:43 |
19
- | <a id="property-equals"></a> `equals?` | (`this`, `t`, `t2`) => `boolean` | node_modules/signal-polyfill/dist/wrapper.d.ts:42 |
13
+ | Property | Type | Defined in |
14
+ | ---------------------------------------------- | -------------------------------- | ---------- |
15
+ | <a id="property-unwatched"></a> `[unwatched]?` | (`this`) => `void` | - |
16
+ | <a id="property-watched"></a> `[watched]?` | (`this`) => `void` | - |
17
+ | <a id="property-equals"></a> `equals?` | (`this`, `t`, `t2`) => `boolean` | - |
@@ -2,8 +2,6 @@
2
2
 
3
3
  # Class: Watcher
4
4
 
5
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:29
6
-
7
5
  ## Constructors
8
6
 
9
7
  ### Constructor
@@ -12,8 +10,6 @@ Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:29
12
10
  new Watcher(notify): Watcher;
13
11
  ```
14
12
 
15
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:32
16
-
17
13
  #### Parameters
18
14
 
19
15
  | Parameter | Type |
@@ -26,9 +22,9 @@ Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:32
26
22
 
27
23
  ## Properties
28
24
 
29
- | Property | Modifier | Type | Defined in |
30
- | ----------------------------------- | ---------- | -------------- | ------------------------------------------------- |
31
- | <a id="property-node"></a> `[NODE]` | `readonly` | `ReactiveNode` | node_modules/signal-polyfill/dist/wrapper.d.ts:31 |
25
+ | Property | Modifier | Type | Defined in |
26
+ | ----------------------------------- | ---------- | -------------- | ---------- |
27
+ | <a id="property-node"></a> `[NODE]` | `readonly` | `ReactiveNode` | - |
32
28
 
33
29
  ## Methods
34
30
 
@@ -38,8 +34,6 @@ Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:32
38
34
  getPending(): Computed<any>[];
39
35
  ```
40
36
 
41
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:35
42
-
43
37
  #### Returns
44
38
 
45
39
  [`Computed`](../../../classes/Computed.md)\<`any`\>[]
@@ -52,8 +46,6 @@ Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:35
52
46
  unwatch(...signals): void;
53
47
  ```
54
48
 
55
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:34
56
-
57
49
  #### Parameters
58
50
 
59
51
  | Parameter | Type |
@@ -72,8 +64,6 @@ Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:34
72
64
  watch(...signals): void;
73
65
  ```
74
66
 
75
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:33
76
-
77
67
  #### Parameters
78
68
 
79
69
  | Parameter | Type |
@@ -6,8 +6,6 @@
6
6
  function currentComputed(): Computed<any> | undefined;
7
7
  ```
8
8
 
9
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:37
10
-
11
9
  ## Returns
12
10
 
13
11
  [`Computed`](../../../classes/Computed.md)\<`any`\> \| `undefined`
@@ -6,8 +6,6 @@
6
6
  function hasSinks(signal): boolean;
7
7
  ```
8
8
 
9
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:27
10
-
11
9
  ## Parameters
12
10
 
13
11
  | Parameter | Type |
@@ -6,8 +6,6 @@
6
6
  function hasSources(signal): boolean;
7
7
  ```
8
8
 
9
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:28
10
-
11
9
  ## Parameters
12
10
 
13
11
  | Parameter | Type |
@@ -6,8 +6,6 @@
6
6
  function introspectSinks(signal): AnySink[];
7
7
  ```
8
8
 
9
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:26
10
-
11
9
  ## Parameters
12
10
 
13
11
  | Parameter | Type |
@@ -6,8 +6,6 @@
6
6
  function introspectSources(sink): AnySignal<any>[];
7
7
  ```
8
8
 
9
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:25
10
-
11
9
  ## Parameters
12
10
 
13
11
  | Parameter | Type |
@@ -6,8 +6,6 @@
6
6
  function untrack<T>(cb): T;
7
7
  ```
8
8
 
9
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:24
10
-
11
9
  ## Type Parameters
12
10
 
13
11
  | Type Parameter |
@@ -5,5 +5,3 @@
5
5
  ```ts
6
6
  const unwatched: unique symbol;
7
7
  ```
8
-
9
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:39
@@ -5,5 +5,3 @@
5
5
  ```ts
6
6
  const watched: unique symbol;
7
7
  ```
8
-
9
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:38
@@ -6,8 +6,6 @@
6
6
  isComputed: (s) => boolean;
7
7
  ```
8
8
 
9
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:7
10
-
11
9
  ## Parameters
12
10
 
13
11
  | Parameter | Type |
@@ -6,8 +6,6 @@
6
6
  isState: (s) => boolean;
7
7
  ```
8
8
 
9
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:7
10
-
11
9
  ## Parameters
12
10
 
13
11
  | Parameter | Type |
@@ -6,8 +6,6 @@
6
6
  isWatcher: (s) => boolean;
7
7
  ```
8
8
 
9
- Defined in: node_modules/signal-polyfill/dist/wrapper.d.ts:7
10
-
11
9
  ## Parameters
12
10
 
13
11
  | Parameter | Type |
@@ -6,7 +6,7 @@
6
6
  type WatcherNotify = () => void;
7
7
  ```
8
8
 
9
- Defined in: [packages/play-signals/src/types.ts:139](https://gitlab.com/xmachin-es/xmachines-js/-/blob/v1.0.0-beta.15/packages/play-signals/src/types.ts#L139)
9
+ Defined in: [packages/play-signals/src/types.ts:139](https://gitlab.com/xmachin-es/xmachines-js/-/blob/v1.0.0-beta.17/packages/play-signals/src/types.ts#L139)
10
10
 
11
11
  Notification callback for Signal.subtle.Watcher
12
12