| 354 | } |
| 355 | |
| 356 | interface ButtonHTMLAttributes<T> extends HTMLAttributes<T> { |
| 357 | autofocus?: boolean; |
| 358 | disabled?: boolean; |
| 359 | form?: string; |
| 360 | formaction?: string; |
| 361 | formenctype?: HTMLFormEncType; |
| 362 | formmethod?: HTMLFormMethod; |
| 363 | formnovalidate?: boolean; |
| 364 | formtarget?: string; |
| 365 | name?: string; |
| 366 | type?: 'submit' | 'reset' | 'button'; |
| 367 | value?: string; |
| 368 | |
| 369 | // camelcase |
| 370 | formAction?: string; |
| 371 | formEnctype?: HTMLFormEncType; |
| 372 | formMethod?: HTMLFormMethod; |
| 373 | formNoValidate?: boolean; |
| 374 | formTarget?: string; |
| 375 | } |
| 376 | |
| 377 | interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> { |
| 378 | width?: number | string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…