mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
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:
Vendored
+1
-1
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user