diff --git a/types/react/index.d.ts b/types/react/index.d.ts index 2ef0f46d40..02bf7c114e 100644 --- a/types/react/index.d.ts +++ b/types/react/index.d.ts @@ -2787,6 +2787,8 @@ declare namespace React { } interface LinkHTMLAttributes extends HTMLAttributes { + as?: string; + crossOrigin?: string; href?: string; hrefLang?: string; integrity?: string; @@ -2794,7 +2796,6 @@ declare namespace React { rel?: string; sizes?: string; type?: string; - as?: string; } interface MapHTMLAttributes extends HTMLAttributes { diff --git a/types/react/v15/index.d.ts b/types/react/v15/index.d.ts index e3f738275b..8e89bfb48d 100644 --- a/types/react/v15/index.d.ts +++ b/types/react/v15/index.d.ts @@ -2721,6 +2721,7 @@ declare namespace React { interface LinkHTMLAttributes extends HTMLAttributes { as?: string; + crossOrigin?: string; href?: string; hrefLang?: string; integrity?: string;