Skip to content

Commit c8e1e69

Browse files
committed
update
1 parent 6fe6ee6 commit c8e1e69

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

packages/eslint-plugin-svelte/src/types-for-node.ts

+12
Original file line numberDiff line numberDiff line change
@@ -495,6 +495,12 @@ export type ASTNodeListener = {
495495
'SvelteHTMLComment:exit'?: (node: AST.SvelteHTMLComment & ASTNodeWithParent) => void;
496496
SvelteReactiveStatement?: (node: AST.SvelteReactiveStatement & ASTNodeWithParent) => void;
497497
'SvelteReactiveStatement:exit'?: (node: AST.SvelteReactiveStatement & ASTNodeWithParent) => void;
498+
SvelteFunctionBindingsExpression?: (
499+
node: AST.SvelteFunctionBindingsExpression & ASTNodeWithParent
500+
) => void;
501+
'SvelteFunctionBindingsExpression:exit'?: (
502+
node: AST.SvelteFunctionBindingsExpression & ASTNodeWithParent
503+
) => void;
498504
};
499505

500506
export type ESNodeListener = {
@@ -950,4 +956,10 @@ export type SvelteNodeListener = {
950956
'SvelteText:exit'?: (node: AST.SvelteText & ASTNodeWithParent) => void;
951957
SvelteHTMLComment?: (node: AST.SvelteHTMLComment & ASTNodeWithParent) => void;
952958
'SvelteHTMLComment:exit'?: (node: AST.SvelteHTMLComment & ASTNodeWithParent) => void;
959+
SvelteFunctionBindingsExpression?: (
960+
node: AST.SvelteFunctionBindingsExpression & ASTNodeWithParent
961+
) => void;
962+
'SvelteFunctionBindingsExpression:exit'?: (
963+
node: AST.SvelteFunctionBindingsExpression & ASTNodeWithParent
964+
) => void;
953965
};

0 commit comments

Comments
 (0)