Skip to content

Commit fff483f

Browse files
committed
fix(compiler): Add missing AttachTag for Tag type
1 parent c365634 commit fff483f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

packages/svelte/src/compiler/types/template.d.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,13 @@ export namespace AST {
547547
| AST.SvelteWindow
548548
| AST.SvelteBoundary;
549549

550-
export type Tag = AST.ExpressionTag | AST.HtmlTag | AST.ConstTag | AST.DebugTag | AST.RenderTag;
550+
export type Tag =
551+
| AST.AttachTag
552+
| AST.ConstTag
553+
| AST.DebugTag
554+
| AST.ExpressionTag
555+
| AST.HtmlTag
556+
| AST.RenderTag;
551557

552558
export type TemplateNode =
553559
| AST.Root

0 commit comments

Comments
 (0)