Skip to content

Commit 566091d

Browse files
authored
Merge pull request #312 from derbyjs/deprecate-model-fn
Deprecate model fn; fix type for fn args
2 parents b4992ed + aaad8dc commit 566091d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Model/fn.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var util = require('../util');
77

88
class NamedFns { }
99

10-
type StartFnParam = string | number | boolean | null | undefined | ReadonlyDeep<unknown>;
10+
type StartFnParam = unknown;
1111

1212
type ModelFn<Ins extends unknown[], Out> =
1313
(...inputs: Ins) => Out |
@@ -90,6 +90,9 @@ declare module './Model' {
9090
* It's not recommended to use this in most cases. Instead, to share reactive functions,
9191
* have the components import a shared function to pass to `model.start`.
9292
*
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+
*
9396
* @param name name of the function to define
9497
* @param fn either a reactive function that accepts inputs and returns output, or
9598
* a `{ get: Function; set: Function }` object defining a two-way reactive function

0 commit comments

Comments
 (0)