0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-24 19:26:56 +01:00

fix(jsx): fix draggable type to accept boolean (#3253)

This commit is contained in:
yasuaki640 2024-08-10 16:27:32 +09:00 committed by GitHub
parent 7cd0248c5a
commit 8ba02273e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -154,7 +154,7 @@ export namespace JSX {
contenteditable?: boolean | 'inherit' | undefined
contextmenu?: string | undefined
dir?: string | undefined
draggable?: 'true' | 'false' | undefined
draggable?: 'true' | 'false' | boolean | undefined
enterkeyhint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send' | undefined
hidden?: boolean | undefined
id?: string | undefined