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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dothtml-interfaces",
3
- "version": "0.1.41",
3
+ "version": "0.1.43",
4
4
  "description": "Dependency injection interfaces for DOTHtml.",
5
5
  "main": "src/index.d.ts",
6
6
  "types": "src/index.d.ts",
@@ -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.