From d5c2d6a0e3ffb17b59ce9787907e97003739d213 Mon Sep 17 00:00:00 2001 From: Christopher Deutsch Date: Sat, 9 Jun 2018 13:03:58 -0500 Subject: [PATCH] Add `type` property for `
    ` https://developer.mozilla.org/en-US/docs/Web/API/HTMLOListElement --- 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 27a76a9a08..b4fb9415d3 100644 --- a/types/react/index.d.ts +++ b/types/react/index.d.ts @@ -1545,6 +1545,7 @@ declare namespace React { interface OlHTMLAttributes extends HTMLAttributes { reversed?: boolean; start?: number; + type?: '1' | 'a' | 'A' | 'i' | 'I'; } interface OptgroupHTMLAttributes extends HTMLAttributes {