TypeScript-DOM-lib-generator icon indicating copy to clipboard operation
TypeScript-DOM-lib-generator copied to clipboard

Supports more refined HTMLInputElement type attributes

Open xushengfeng opened this issue 1 year ago • 1 comments

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";

xushengfeng avatar Aug 18 '24 15:08 xushengfeng