dothtml-interfaces 0.1.41 → 0.1.43
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/package.json +1 -1
- package/src/i-reactive.d.ts +1 -1
package/package.json
CHANGED
package/src/i-reactive.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export default interface IReactive<Ti = any, To = Ti>{
|
|
|
5
5
|
// Get the value.
|
|
6
6
|
getValue(): To;
|
|
7
7
|
// Set the value.
|
|
8
|
-
setValue(v: Ti);
|
|
8
|
+
setValue(v: Ti|null|undefined);
|
|
9
9
|
|
|
10
10
|
// Key is used for observable array proxy bindings.
|
|
11
11
|
// If a key is provided, it's used to uniquely identify array elements.
|