@types/react-dom 16.9.14 → 16.9.15

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.
@@ -8,9 +8,9 @@ This package contains type definitions for React (react-dom) (https://reactjs.or
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom/v16.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Wed, 07 Jul 2021 17:33:41 GMT
11
+ * Last updated: Mon, 25 Apr 2022 17:31:40 GMT
12
12
  * Dependencies: [@types/react](https://npmjs.com/package/@types/react)
13
- * Global values: `ReactDOM`, `ReactDOMNodeStream`, `ReactDOMServer`
13
+ * Global values: `ReactDOM`, `ReactDOMServer`
14
14
 
15
15
  # Credits
16
16
  These definitions were written by [Asana](https://asana.com), [AssureSign](http://www.assuresign.com), [Microsoft](https://microsoft.com), [MartynasZilinskas](https://github.com/MartynasZilinskas), [Josh Rutherford](https://github.com/theruther4d), [Jessica Franco](https://github.com/Jessidhia), and [Sebastian Silbermann](https://github.com/eps1lon).
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/react-dom",
3
- "version": "16.9.14",
3
+ "version": "16.9.15",
4
4
  "description": "TypeScript definitions for React (react-dom)",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom",
6
6
  "license": "MIT",
@@ -49,6 +49,6 @@
49
49
  "dependencies": {
50
50
  "@types/react": "^16"
51
51
  },
52
- "typesPublisherContentHash": "c69b50ecacbd85d15c0caf3f23fdd7c907bfb950f95c4df767e9b7627556b61f",
53
- "typeScriptVersion": "3.6"
52
+ "typesPublisherContentHash": "4c97af1ae62d84887a9291a66ce0c4197c1a58148e28186800dc1fbe66a5f5c5",
53
+ "typeScriptVersion": "3.9"
54
54
  }
@@ -1,18 +0,0 @@
1
- import { ReactElement } from 'react';
2
-
3
- /**
4
- * Render a ReactElement to its initial HTML. This should only be used on the
5
- * server.
6
- * See https://facebook.github.io/react/docs/react-dom-stream.html#rendertostream
7
- */
8
- export function renderToStream(element: ReactElement): any;
9
-
10
- /**
11
- * Similar to renderToStream, except this doesn't create extra DOM attributes
12
- * such as data-react-id that React uses internally.
13
- * See https://facebook.github.io/react/docs/react-dom-stream.html#rendertostaticstream
14
- */
15
- export function renderToStaticStream(element: ReactElement): any;
16
- export const version: string;
17
-
18
- export as namespace ReactDOMNodeStream;