Add scope?: string to Td HTML attributes (#18381)

This attribute exists on both <th> and <td> but is present only in <th> currently: https://www.w3schools.com/tags/att_td_scope.asp
This commit is contained in:
Stéphane Goetz
2017-08-08 14:43:27 -07:00
committed by Mohamed Hegazy
parent a608fa5c55
commit f6e30f1669
+1
View File
@@ -2911,6 +2911,7 @@ declare namespace React {
colSpan?: number;
headers?: string;
rowSpan?: number;
scope?: string;
}
interface ThHTMLAttributes<T> extends HTMLAttributes<T> {