Skip to content

Commit

Permalink
Strengthen type of HTMLSelectElement.type (#1697)
Browse files Browse the repository at this point in the history
Co-authored-by: saschanaz <saschanaz@users.noreply.github.com>
  • Loading branch information
andersk and saschanaz committed Mar 11, 2024
1 parent 1b3d2d8 commit 6621974
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12563,7 +12563,7 @@ interface HTMLSelectElement extends HTMLElement {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/type)
*/
readonly type: string;
readonly type: "select-one" | "select-multiple";
/**
* Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.
*
Expand Down
4 changes: 4 additions & 0 deletions inputfiles/overridingTypes.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -1281,6 +1281,10 @@
"HTMLSelectElement": {
"properties": {
"property": {
"type": {
"name": "type",
"overrideType": "\"select-one\" | \"select-multiple\""
},
"autocomplete": {
"name": "autocomplete",
"overrideType": "AutoFill"
Expand Down

0 comments on commit 6621974

Please sign in to comment.