@types/react-dom 19.2.1 → 19.2.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-dom (https://react.dev/).
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: Tue, 07 Oct 2025 05:34:23 GMT
11
+ * Last updated: Wed, 12 Nov 2025 04:37:38 GMT
12
12
  * Dependencies: none
13
13
  * Peer dependencies: [@types/react](https://npmjs.com/package/@types/react)
14
14
 
react-dom/canary.d.ts CHANGED
@@ -65,6 +65,7 @@ declare module "react" {
65
65
  listener: EventListener,
66
66
  optionsOrUseCapture?: Parameters<Element["removeEventListener"]>[2],
67
67
  ): void;
68
+ dispatchEvent(event: Event): boolean;
68
69
  scrollIntoView(alignToTop?: boolean): void;
69
70
  }
70
71
  }
react-dom/client.d.ts CHANGED
@@ -96,7 +96,7 @@ export function createRoot(container: Container, options?: RootOptions): Root;
96
96
  * hydrateRoot(document.querySelector('#root'), <App />)
97
97
  * ```
98
98
  *
99
- * @see https://reactjs.org/docs/react-dom-client.html#hydrateroot
99
+ * @see https://react.dev/reference/react-dom/client/hydrateRoot
100
100
  */
101
101
  export function hydrateRoot(
102
102
  container: Element | Document,
react-dom/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/react-dom",
3
- "version": "19.2.1",
3
+ "version": "19.2.3",
4
4
  "description": "TypeScript definitions for react-dom",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom",
6
6
  "license": "MIT",
@@ -123,6 +123,6 @@
123
123
  "peerDependencies": {
124
124
  "@types/react": "^19.2.0"
125
125
  },
126
- "typesPublisherContentHash": "68266be9b96ace4d6eb696cfbf2788d803369c334bed806fb83a2414f592d872",
126
+ "typesPublisherContentHash": "6f16aac4f50b7ebe3201fdac53a58874d2899d6108894538ade2d61fbb99f8c5",
127
127
  "typeScriptVersion": "5.2"
128
128
  }
react-dom/server.d.ts CHANGED
@@ -94,7 +94,7 @@ export interface ServerOptions {
94
94
  /**
95
95
  * Only available in the environments with [Node.js Streams](https://nodejs.dev/learn/nodejs-streams).
96
96
  *
97
- * @see [API](https://reactjs.org/docs/react-dom-server.html#rendertopipeablestream)
97
+ * @see [API](https://react.dev/reference/react-dom/server/renderToPipeableStream)
98
98
  *
99
99
  * @param children
100
100
  * @param options
@@ -149,7 +149,7 @@ export interface ReactDOMServerReadableStream extends ReadableStream {
149
149
  /**
150
150
  * Only available in the environments with [Web Streams](https://developer.mozilla.org/en-US/docs/Web/API/Streams_API) (this includes browsers, Deno, and some modern edge runtimes).
151
151
  *
152
- * @see [API](https://reactjs.org/docs/react-dom-server.html#rendertoreadablestream)
152
+ * @see [API](https://react.dev/reference/react-dom/server/renderToReadableStream)
153
153
  */
154
154
  export function renderToReadableStream(
155
155
  children: ReactNode,