@types/react 16.14.60 → 16.14.61
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 v16.14/README.md +1 -1
- react v16.14/index.d.ts +6 -0
- react v16.14/package.json +3 -3
react v16.14/README.md
CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for react (https://react.dev/).
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react/v16.
|
9
9
|
|
10
10
|
### Additional Details
|
11
|
-
* Last updated:
|
11
|
+
* Last updated: Mon, 16 Sep 2024 09:08:35 GMT
|
12
12
|
* Dependencies: [@types/prop-types](https://npmjs.com/package/@types/prop-types), [@types/scheduler](https://npmjs.com/package/@types/scheduler), [csstype](https://npmjs.com/package/csstype)
|
13
13
|
|
14
14
|
# Credits
|
react v16.14/index.d.ts
CHANGED
@@ -393,6 +393,12 @@ declare namespace React {
|
|
393
393
|
|
394
394
|
/** A fallback react tree to show when a Suspense child (like React.lazy) suspends */
|
395
395
|
fallback: NonNullable<ReactNode> | null;
|
396
|
+
|
397
|
+
/**
|
398
|
+
* A name for this Suspense boundary for instrumentation purposes.
|
399
|
+
* The name will help identify this boundary in React DevTools.
|
400
|
+
*/
|
401
|
+
name?: string | undefined;
|
396
402
|
}
|
397
403
|
/**
|
398
404
|
* This feature is not yet available for server-side rendering.
|
react v16.14/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/react",
|
3
|
-
"version": "16.14.
|
3
|
+
"version": "16.14.61",
|
4
4
|
"description": "TypeScript definitions for react",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react",
|
6
6
|
"license": "MIT",
|
@@ -164,6 +164,6 @@
|
|
164
164
|
"@types/scheduler": "^0.16",
|
165
165
|
"csstype": "^3.0.2"
|
166
166
|
},
|
167
|
-
"typesPublisherContentHash": "
|
168
|
-
"typeScriptVersion": "4.
|
167
|
+
"typesPublisherContentHash": "a4c6d3de521dce704737e61945962e32bde2377fc940b2a6d743fd3368ed5e0d",
|
168
|
+
"typeScriptVersion": "4.8"
|
169
169
|
}
|