Merge pull request #10300 from DanielRosenwasser/removeIndexSignatureReact

Remove string index signature in React's HTMLAttributes
This commit is contained in:
Yui
2016-07-27 10:49:37 -07:00
committed by GitHub

3
react/index.d.ts vendored
View File

@@ -2037,9 +2037,6 @@ declare namespace React {
results?: number;
security?: string;
unselectable?: boolean;
// Allows aria- and data- Attributes
[key: string]: any;
}
interface SVGAttributes<T> extends HTMLAttributes<T> {