Merge pull request #21381 from kaelig/patch-2

React: Add crossOrigin html attribute to the link element
This commit is contained in:
Nathan Shively-Sanders
2017-11-14 15:30:43 -08:00
committed by GitHub
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -2787,6 +2787,8 @@ declare namespace React {
}
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
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<T> extends HTMLAttributes<T> {
+1
View File
@@ -2721,6 +2721,7 @@ declare namespace React {
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
as?: string;
crossOrigin?: string;
href?: string;
hrefLang?: string;
integrity?: string;