Fix CSSProperties indexer issue (sort of)

This commit is contained in:
James Brantly
2015-08-29 09:48:26 -04:00
parent 6102332bf0
commit b4fdbace3d
2 changed files with 7 additions and 6 deletions
+2 -2
View File
@@ -403,7 +403,7 @@ declare namespace __React {
strokeOpacity?: number;
strokeWidth?: number;
[propertyName: string]: string | number | boolean;
[propertyName: string]: any;
}
interface HTMLAttributes extends DOMAttributes {
@@ -1200,7 +1200,7 @@ declare module "react/addons" {
strokeOpacity?: number;
strokeWidth?: number;
[propertyName: string]: string | number | boolean;
[propertyName: string]: any;
}
interface HTMLAttributes extends DOMAttributes {