We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a88f28 commit 60b7d81Copy full SHA for 60b7d81
docs/AST.md
@@ -423,6 +423,8 @@ interface SvelteConstTag extends Node {
423
}
424
```
425
426
+[VariableDeclarator] is a node defined in ESTree.
427
+
428
### SvelteRenderTag
429
430
This is the `{@render}` tag node.
@@ -431,12 +433,10 @@ This is the `{@render}` tag node.
431
433
interface SvelteRenderTag extends Node {
432
434
type: "SvelteRenderTag";
435
callee: Identifier;
- argument: Expression | null;
436
+ arguments: (Expression | SpreadElement)[];
437
438
439
-[VariableDeclarator] is a node defined in ESTree.
-
440
### SvelteIfBlock
441
442
This is the `{#if}` tag node. `{:else if}` is also included in this node.
0 commit comments