@types/react-dom 18.2.3 → 18.2.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) (https://reactjs.or
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, 03 May 2023 19:32:44 GMT
11
+ * Last updated: Fri, 05 May 2023 15:32:48 GMT
12
12
  * Dependencies: [@types/react](https://npmjs.com/package/@types/react)
13
13
  * Global values: `ReactDOM`, `ReactDOMServer`
14
14
 
react-dom/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/react-dom",
3
- "version": "18.2.3",
3
+ "version": "18.2.4",
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,7 +49,7 @@
49
49
  "dependencies": {
50
50
  "@types/react": "*"
51
51
  },
52
- "typesPublisherContentHash": "b3f8801a697839dabc1f50b000c852207e2bf0e2e4028fc35cb6130dc718e229",
52
+ "typesPublisherContentHash": "44e1dd3be11d7f0b8d09549cf8a10814625331a7a73865215f38dcab5ee5b64b",
53
53
  "typeScriptVersion": "4.3",
54
54
  "exports": {
55
55
  ".": {
react-dom/server.d.ts CHANGED
@@ -39,8 +39,10 @@ export interface RenderToPipeableStreamOptions {
39
39
  }
40
40
 
41
41
  export interface PipeableStream {
42
- abort(): void;
43
- pipe<Writable extends NodeJS.WritableStream>(destination: Writable): Writable;
42
+ // tslint:disable-next-line:void-return
43
+ abort(this: void): void;
44
+ // tslint:disable-next-line:void-return
45
+ pipe<Writable extends NodeJS.WritableStream>(this: void, destination: Writable): Writable;
44
46
  }
45
47
 
46
48
  /**