fix(types): support contenteditable="plaintext-only" (#8796)

This commit is contained in:
白雾三语 2023-10-20 17:35:53 +08:00 committed by GitHub
parent 21a89af9e6
commit 26ca89e5cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
// Standard HTML Attributes
accesskey?: string
contenteditable?: Booleanish | 'inherit'
contenteditable?: Booleanish | 'inherit' | 'plaintext-only'
contextmenu?: string
dir?: string
draggable?: Booleanish