File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ var util = require('../util');
7
7
8
8
class NamedFns { }
9
9
10
- type StartFnParam = string | number | boolean | null | undefined | ReadonlyDeep < unknown > ;
10
+ type StartFnParam = unknown ;
11
11
12
12
type ModelFn < Ins extends unknown [ ] , Out > =
13
13
( ...inputs : Ins ) => Out |
@@ -90,6 +90,9 @@ declare module './Model' {
90
90
* It's not recommended to use this in most cases. Instead, to share reactive functions,
91
91
* have the components import a shared function to pass to `model.start`.
92
92
*
93
+ * @deprecated The use of named functions is deprecated. Instead, to share a reactive function,
94
+ * you should export it and then require/import it into each file that needs to use it.
95
+ *
93
96
* @param name name of the function to define
94
97
* @param fn either a reactive function that accepts inputs and returns output, or
95
98
* a `{ get: Function; set: Function }` object defining a two-way reactive function
You can’t perform that action at this time.
0 commit comments