Add type property for <ol>

https://developer.mozilla.org/en-US/docs/Web/API/HTMLOListElement
This commit is contained in:
Christopher Deutsch
2018-06-09 13:03:58 -05:00
parent 42e514d82c
commit d5c2d6a0e3

View File

@@ -1545,6 +1545,7 @@ declare namespace React {
interface OlHTMLAttributes<T> extends HTMLAttributes<T> {
reversed?: boolean;
start?: number;
type?: '1' | 'a' | 'A' | 'i' | 'I';
}
interface OptgroupHTMLAttributes<T> extends HTMLAttributes<T> {