@types/react-dom 16.8.1 → 16.8.2

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.g
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: Wed, 13 Feb 2019 21:04:55 GMT
11
+ * Last updated: Sat, 16 Feb 2019 17:42:08 GMT
12
12
  * Dependencies: @types/react
13
13
  * Global values: ReactDOM, ReactDOMNodeStream, ReactDOMServer
14
14
 
react-dom/index.d.ts CHANGED
@@ -17,7 +17,7 @@ import {
17
17
  DOMAttributes, DOMElement, ReactNode, ReactPortal
18
18
  } from 'react';
19
19
 
20
- export function findDOMNode(instance: ReactInstance): Element | null | Text;
20
+ export function findDOMNode(instance: ReactInstance | null | undefined): Element | null | Text;
21
21
  export function unmountComponentAtNode(container: Element): boolean;
22
22
 
23
23
  export function createPortal(children: ReactNode, container: Element, key?: null | string): ReactPortal;
react-dom/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/react-dom",
3
- "version": "16.8.1",
3
+ "version": "16.8.2",
4
4
  "description": "TypeScript definitions for React (react-dom)",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -42,6 +42,6 @@
42
42
  "dependencies": {
43
43
  "@types/react": "*"
44
44
  },
45
- "typesPublisherContentHash": "d61e9c5f7701893629315e54225f99c546539702788d18b5140f6c3d34973a72",
45
+ "typesPublisherContentHash": "efeed5f88d721ec3aa58ef3d2b2defaed4abbeedf94c989085f5b597a3f0383c",
46
46
  "typeScriptVersion": "2.8"
47
47
  }