Skip to content

Commit

Permalink
fix: max and min input element types (#4568)
Browse files Browse the repository at this point in the history
  • Loading branch information
rschristian authored Nov 23, 2024
1 parent 22621b6 commit 5b6c3a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jsx.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1781,10 +1781,10 @@ export namespace JSXInternal {
height?: Signalish<number | string | undefined>;
indeterminate?: Signalish<boolean | undefined>;
list?: Signalish<string | undefined>;
max?: Signalish<string | undefined>;
max?: Signalish<number | string | undefined>;
maxlength?: Signalish<number | undefined>;
maxLength?: Signalish<number | undefined>;
min?: Signalish<string | undefined>;
min?: Signalish<number | string | undefined>;
minlength?: Signalish<number | undefined>;
minLength?: Signalish<number | undefined>;
multiple?: Signalish<boolean | undefined>;
Expand Down

0 comments on commit 5b6c3a5

Please sign in to comment.