fix(types/jsx): llow tabindex to be a string (#3476)

This commit is contained in:
bartenra 2021-03-25 21:20:38 +01:00 committed by GitHub
parent c8aed13711
commit e4a5712a33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -265,7 +265,7 @@ export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
lang?: string
placeholder?: string
spellcheck?: Booleanish
tabindex?: number
tabindex?: number | string
title?: string
translate?: 'yes' | 'no'