Updated interface HTMLAttributes

The explicit form of the indexer `[key: string]: string | string[] | boolean | number | EventHandler<SyntheticEvent> | CSSProperties | {__html: string};` Fails in TravisCI - so any is currently the way to go.
This commit is contained in:
glatzert
2016-02-25 10:28:51 +01:00
parent e72758e8b7
commit 744a89c4b1
+1 -1
View File
@@ -1845,7 +1845,7 @@ declare namespace __React {
unselectable?: boolean;
// Allows aria- and data- Attributes
[key: string]: string | string[] | boolean | number | EventHandler<SyntheticEvent> | CSSProperties | {__html: string};
[key: string]: any;
}
interface SVGAttributes extends HTMLAttributes {