@types/react-dom 16.0.2 → 16.0.3

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://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom
9
9
 
10
10
  Additional Details
11
- * Last updated: Thu, 19 Oct 2017 15:06:27 GMT
11
+ * Last updated: Thu, 09 Nov 2017 09:57:15 GMT
12
12
  * Dependencies: react, node
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.0.2",
3
+ "version": "16.0.3",
4
4
  "description": "TypeScript definitions for React (react-dom)",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -37,6 +37,6 @@
37
37
  "@types/react": "*",
38
38
  "@types/node": "*"
39
39
  },
40
- "typesPublisherContentHash": "b48be27b62110c1c8cdb242a84728f4ca63499191894c602585adc5f0501882f",
40
+ "typesPublisherContentHash": "a1ecd70c2ef3dbfad1349e2130eeab861b8b53a24ba36a0721a3bd23b9504aeb",
41
41
  "typeScriptVersion": "2.3"
42
42
  }
@@ -59,7 +59,7 @@ export interface SyntheticEventData extends OptionalEventProperties {
59
59
  export type EventSimulator = (element: Element | Component<any>, eventData?: SyntheticEventData) => void;
60
60
 
61
61
  export interface MockedComponentClass {
62
- new (): any;
62
+ new (props: {}): any;
63
63
  }
64
64
 
65
65
  export interface ShallowRenderer {