File tree 1 file changed +12
-0
lines changed
packages/eslint-plugin-svelte/src
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -495,6 +495,12 @@ export type ASTNodeListener = {
495
495
'SvelteHTMLComment:exit' ?: ( node : AST . SvelteHTMLComment & ASTNodeWithParent ) => void ;
496
496
SvelteReactiveStatement ?: ( node : AST . SvelteReactiveStatement & ASTNodeWithParent ) => void ;
497
497
'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 ;
498
504
} ;
499
505
500
506
export type ESNodeListener = {
@@ -950,4 +956,10 @@ export type SvelteNodeListener = {
950
956
'SvelteText:exit' ?: ( node : AST . SvelteText & ASTNodeWithParent ) => void ;
951
957
SvelteHTMLComment ?: ( node : AST . SvelteHTMLComment & ASTNodeWithParent ) => void ;
952
958
'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 ;
953
965
} ;
You can’t perform that action at this time.
0 commit comments