Skip to content

Commit 41aa286

Browse files
committed
fix: add files and group to HTMLInputAttributes in elements.d.ts
Adds missing `files` and `group` to match the respective `bind:files` and `bind:group`.
1 parent dbd4617 commit 41aa286

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/svelte/elements.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1076,6 +1076,7 @@ export interface HTMLInputAttributes extends HTMLAttributes<HTMLInputElement> {
10761076
checked?: boolean | undefined | null;
10771077
dirname?: string | undefined | null;
10781078
disabled?: boolean | undefined | null;
1079+
files?: FileList | undefined | null;
10791080
form?: string | undefined | null;
10801081
formaction?: string | undefined | null;
10811082
formenctype?:
@@ -1087,6 +1088,7 @@ export interface HTMLInputAttributes extends HTMLAttributes<HTMLInputElement> {
10871088
formmethod?: 'dialog' | 'get' | 'post' | 'DIALOG' | 'GET' | 'POST' | undefined | null;
10881089
formnovalidate?: boolean | undefined | null;
10891090
formtarget?: string | undefined | null;
1091+
group?: any | undefined | null;
10901092
height?: number | string | undefined | null;
10911093
indeterminate?: boolean | undefined | null;
10921094
list?: string | undefined | null;

0 commit comments

Comments
 (0)