@types/react-dom 16.0.10 → 16.0.11

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,8 +8,8 @@ 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: Thu, 22 Nov 2018 04:53:46 GMT
12
- * Dependencies: react, node
11
+ * Last updated: Tue, 27 Nov 2018 22:06:51 GMT
12
+ * Dependencies: react
13
13
  * Global values: ReactDOM, ReactDOMNodeStream, ReactDOMServer
14
14
 
15
15
  # Credits
react-dom/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/react-dom",
3
- "version": "16.0.10",
3
+ "version": "16.0.11",
4
4
  "description": "TypeScript definitions for React (react-dom)",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -35,9 +35,8 @@
35
35
  },
36
36
  "scripts": {},
37
37
  "dependencies": {
38
- "@types/react": "*",
39
- "@types/node": "*"
38
+ "@types/react": "*"
40
39
  },
41
- "typesPublisherContentHash": "7e358e27c7e02f584ca747dcaa6ba8c2f3caff5b6be4ed0e3410abb5239491df",
40
+ "typesPublisherContentHash": "de1f8ab5d92919c9885d08a2fb6995965e0ef7945f4de92cab32b6621130dc21",
42
41
  "typeScriptVersion": "2.8"
43
42
  }
@@ -1,4 +1,10 @@
1
- /// <reference types="node" />
1
+ // forward declarations
2
+ declare global {
3
+ namespace NodeJS {
4
+ // tslint:disable-next-line:no-empty-interface
5
+ interface ReadableStream {}
6
+ }
7
+ }
2
8
 
3
9
  import { ReactElement } from 'react';
4
10