dom-expressions 0.32.0 → 0.32.1

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 (2) hide show
  1. package/package.json +2 -2
  2. package/src/client.d.ts +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dom-expressions",
3
3
  "description": "A Fine-Grained Runtime for Performant DOM Rendering",
4
- "version": "0.32.0",
4
+ "version": "0.32.1",
5
5
  "author": "Ryan Carniato",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -22,5 +22,5 @@
22
22
  "devDependencies": {
23
23
  "babel-plugin-jsx-dom-expressions": "^0.32.0"
24
24
  },
25
- "gitHead": "6c6759c7f721d1e738b3aead7afb5c3cd0be04fc"
25
+ "gitHead": "903bc3131405801c2916e810d1e4db302531c83c"
26
26
  }
package/src/client.d.ts CHANGED
@@ -30,7 +30,7 @@ export function spread<T>(
30
30
  export function assign(node: Element, props: any, isSVG?: Boolean, skipChildren?: Boolean): void;
31
31
  export function setAttribute(node: Element, name: string, value: string): void;
32
32
  export function setAttributeNS(node: Element, namespace: string, name: string, value: string): void;
33
- export function innerHTML(node: Element, content: string);
33
+ export function innerHTML(node: Element, content: string): void;
34
34
  export function addEventListener(
35
35
  node: Element,
36
36
  name: string,