@types/react-dom 16.9.3 → 16.9.4

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.
react-dom/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for React (react-dom) (http://facebook.gi
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom
9
9
 
10
10
  Additional Details
11
- * Last updated: Fri, 25 Oct 2019 08:56:09 GMT
11
+ * Last updated: Wed, 06 Nov 2019 16:25:05 GMT
12
12
  * Dependencies: @types/react
13
13
  * Global values: ReactDOM, ReactDOMNodeStream, ReactDOMServer
14
14
 
react-dom/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/react-dom",
3
- "version": "16.9.3",
3
+ "version": "16.9.4",
4
4
  "description": "TypeScript definitions for React (react-dom)",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -43,6 +43,6 @@
43
43
  "dependencies": {
44
44
  "@types/react": "*"
45
45
  },
46
- "typesPublisherContentHash": "6f27bad57d05c60d7b8ff4c2a712546104cae86190c5f1206899bb3a71adf68c",
46
+ "typesPublisherContentHash": "3869812629e1187cb9fb43c30ddd1e1b1d9e6659cb2ac79d9d53533f6cce23ae",
47
47
  "typeScriptVersion": "2.8"
48
48
  }
@@ -14,7 +14,7 @@ import { ReactElement } from 'react';
14
14
  * and send the markup down on the initial request for faster page loads and to allow search
15
15
  * engines to crawl your pages for SEO purposes.
16
16
  *
17
- * If you call `ReactDOM.render()` on a node that already has this server-rendered markup,
17
+ * If you call `ReactDOM.hydrate()` on a node that already has this server-rendered markup,
18
18
  * React will preserve it and only attach event handlers, allowing you
19
19
  * to have a very performant first-load experience.
20
20
  */