Skip to content

Commit 4f10c83

Browse files
authored
fix: make custom element tag optional in typings (#13172)
Was missing from #12754 where we made the tag optional fixes #13161
1 parent 0332abb commit 4f10c83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/svelte/elements.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1934,7 +1934,7 @@ export interface SvelteHTMLElements {
19341934
| string
19351935
| undefined
19361936
| {
1937-
tag: string;
1937+
tag?: string;
19381938
shadow?: 'open' | 'none' | undefined;
19391939
props?:
19401940
| Record<

0 commit comments

Comments
 (0)