@types/react 16.14.64 → 16.14.65
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 +3 -0
- react v16.14/package.json +2 -2
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: Tue, 27 May 2025 08:02:50 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
@@ -2296,6 +2296,7 @@ declare namespace React {
|
|
2296
2296
|
|
2297
2297
|
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
|
2298
2298
|
as?: string | undefined;
|
2299
|
+
blocking?: "render" | (string & {}) | undefined;
|
2299
2300
|
crossOrigin?: CrossOrigin;
|
2300
2301
|
fetchPriority?: "high" | "low" | "auto";
|
2301
2302
|
href?: string | undefined;
|
@@ -2404,6 +2405,7 @@ declare namespace React {
|
|
2404
2405
|
|
2405
2406
|
interface ScriptHTMLAttributes<T> extends HTMLAttributes<T> {
|
2406
2407
|
async?: boolean | undefined;
|
2408
|
+
blocking?: "render" | (string & {}) | undefined;
|
2407
2409
|
/** @deprecated */
|
2408
2410
|
charSet?: string | undefined;
|
2409
2411
|
crossOrigin?: CrossOrigin;
|
@@ -2438,6 +2440,7 @@ declare namespace React {
|
|
2438
2440
|
}
|
2439
2441
|
|
2440
2442
|
interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
|
2443
|
+
blocking?: "render" | (string & {}) | undefined;
|
2441
2444
|
media?: string | undefined;
|
2442
2445
|
scoped?: boolean | undefined;
|
2443
2446
|
type?: string | undefined;
|
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.65",
|
4
4
|
"description": "TypeScript definitions for react",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react",
|
6
6
|
"license": "MIT",
|
@@ -165,6 +165,6 @@
|
|
165
165
|
"csstype": "^3.0.2"
|
166
166
|
},
|
167
167
|
"peerDependencies": {},
|
168
|
-
"typesPublisherContentHash": "
|
168
|
+
"typesPublisherContentHash": "e2354344db08c03409ad574ae49dedd1e5e04ce814c8be4b8dd21fbaa95bc50f",
|
169
169
|
"typeScriptVersion": "5.1"
|
170
170
|
}
|