File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1050,9 +1050,9 @@ declare module 'svelte/compiler' {
1050
1050
expression : SimpleCallExpression | ( ChainExpression & { expression : SimpleCallExpression } ) ;
1051
1051
}
1052
1052
1053
- /** A `{ @ attach foo (...)} tag */
1054
- export interface AttachTag extends BaseNode {
1055
- type : 'AttachTag ' ;
1053
+ /** An ` attach(...)` attribute */
1054
+ export interface Attachment extends BaseNode {
1055
+ type : 'Attachment ' ;
1056
1056
attachments : Array < Expression | SpreadElement > ;
1057
1057
}
1058
1058
@@ -1138,7 +1138,7 @@ declare module 'svelte/compiler' {
1138
1138
1139
1139
interface BaseElement extends BaseNode {
1140
1140
name : string ;
1141
- attributes : Array < Attribute | SpreadAttribute | Directive | AttachTag > ;
1141
+ attributes : Array < Attribute | SpreadAttribute | Directive | Attachment > ;
1142
1142
fragment : Fragment ;
1143
1143
}
1144
1144
@@ -1328,7 +1328,7 @@ declare module 'svelte/compiler' {
1328
1328
| AST . Attribute
1329
1329
| AST . SpreadAttribute
1330
1330
| Directive
1331
- | AST . AttachTag
1331
+ | AST . Attachment
1332
1332
| AST . Comment
1333
1333
| Block ;
1334
1334
You can’t perform that action at this time.
0 commit comments