TypeScript-DOM-lib-generator
TypeScript-DOM-lib-generator copied to clipboard
Supports more refined HTMLInputElement type attributes
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#browser_compatibility
HTMLInputElement type now is string, supporting like 'checkbox ' is better
| "button"
| "checkbox"
| "color"
| "date"
| "datetime-local"
| "email"
| "file"
| "hidden"
| "image"
| "month"
| "number"
| "password"
| "radio"
| "range"
| "reset"
| "search"
| "submit"
| "tel"
| "text"
| "time"
| "url"
| "week";