react Add 'as' attribute for link element (#20769)

This commit is contained in:
Artem Malko
2017-10-21 01:36:49 +07:00
committed by John Reilly
parent e51980df25
commit 38e3db12b8

View File

@@ -2493,6 +2493,7 @@ declare namespace React {
allowFullScreen?: boolean;
allowTransparency?: boolean;
alt?: string;
as?: string;
async?: boolean;
autoComplete?: string;
autoFocus?: boolean;
@@ -2602,6 +2603,7 @@ declare namespace React {
rel?: string;
target?: string;
type?: string;
as?: string;
}
// tslint:disable-next-line:no-empty-interface
@@ -2787,6 +2789,7 @@ declare namespace React {
rel?: string;
sizes?: string;
type?: string;
as?: string;
}
interface MapHTMLAttributes<T> extends HTMLAttributes<T> {