fix(compiler): Add missing `AttachTag` for `Tag` type

pull/15946/head
Mateusz Kadlubowski 4 months ago
parent c365634ace
commit fff483f736
No known key found for this signature in database
GPG Key ID: AAED58FCEFE941BB

@ -547,7 +547,13 @@ export namespace AST {
| AST.SvelteWindow
| AST.SvelteBoundary;
export type Tag = AST.ExpressionTag | AST.HtmlTag | AST.ConstTag | AST.DebugTag | AST.RenderTag;
export type Tag =
| AST.AttachTag
| AST.ConstTag
| AST.DebugTag
| AST.ExpressionTag
| AST.HtmlTag
| AST.RenderTag;
export type TemplateNode =
| AST.Root

Loading…
Cancel
Save