From f6e30f1669065efca3e70c5c228505ffc60675b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Goetz?= Date: Tue, 8 Aug 2017 23:43:27 +0200 Subject: [PATCH] Add scope?: string to Td HTML attributes (#18381) This attribute exists on both and but is present only in currently: https://www.w3schools.com/tags/att_td_scope.asp --- types/react/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/react/index.d.ts b/types/react/index.d.ts index 261b8886d1..27f25ec6b0 100644 --- a/types/react/index.d.ts +++ b/types/react/index.d.ts @@ -2911,6 +2911,7 @@ declare namespace React { colSpan?: number; headers?: string; rowSpan?: number; + scope?: string; } interface ThHTMLAttributes extends HTMLAttributes {