mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
react: add fetchPriority to LinkHTMLAttributes (#65726)
* `react`: add `fetchPriority` to `LinkHTMLAttributes` * Fix casing
This commit is contained in:
committed by
GitHub
parent
96daada173
commit
a578a934d7
1
types/react/index.d.ts
vendored
1
types/react/index.d.ts
vendored
@@ -2360,6 +2360,7 @@ declare namespace React {
|
||||
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
|
||||
as?: string | undefined;
|
||||
crossOrigin?: "anonymous" | "use-credentials" | "" | undefined;
|
||||
fetchpriority?: "high" | "low" | "auto";
|
||||
href?: string | undefined;
|
||||
hrefLang?: string | undefined;
|
||||
integrity?: string | undefined;
|
||||
|
||||
1
types/react/ts5.0/index.d.ts
vendored
1
types/react/ts5.0/index.d.ts
vendored
@@ -2328,6 +2328,7 @@ declare namespace React {
|
||||
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
|
||||
as?: string | undefined;
|
||||
crossOrigin?: "anonymous" | "use-credentials" | "" | undefined;
|
||||
fetchpriority?: "high" | "low" | "auto";
|
||||
href?: string | undefined;
|
||||
hrefLang?: string | undefined;
|
||||
integrity?: string | undefined;
|
||||
|
||||
1
types/react/v15/index.d.ts
vendored
1
types/react/v15/index.d.ts
vendored
@@ -2947,6 +2947,7 @@ declare namespace React {
|
||||
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
|
||||
as?: string | undefined;
|
||||
crossOrigin?: "anonymous" | "use-credentials" | "" | undefined;
|
||||
fetchpriority?: "high" | "low" | "auto";
|
||||
href?: string | undefined;
|
||||
hrefLang?: string | undefined;
|
||||
integrity?: string | undefined;
|
||||
|
||||
1
types/react/v16/index.d.ts
vendored
1
types/react/v16/index.d.ts
vendored
@@ -2245,6 +2245,7 @@ declare namespace React {
|
||||
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
|
||||
as?: string | undefined;
|
||||
crossOrigin?: "anonymous" | "use-credentials" | "" | undefined;
|
||||
fetchpriority?: "high" | "low" | "auto";
|
||||
href?: string | undefined;
|
||||
hrefLang?: string | undefined;
|
||||
integrity?: string | undefined;
|
||||
|
||||
1
types/react/v17/index.d.ts
vendored
1
types/react/v17/index.d.ts
vendored
@@ -2244,6 +2244,7 @@ declare namespace React {
|
||||
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
|
||||
as?: string | undefined;
|
||||
crossOrigin?: "anonymous" | "use-credentials" | "" | undefined;
|
||||
fetchpriority?: "high" | "low" | "auto";
|
||||
href?: string | undefined;
|
||||
hrefLang?: string | undefined;
|
||||
integrity?: string | undefined;
|
||||
|
||||
Reference in New Issue
Block a user