File tree 2 files changed +6
-2
lines changed
packages/eslint-plugin-svelte/src
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
// IMPORTANT!
2
2
// This file has been automatically generated,
3
3
// in order to update its content execute "pnpm run update"
4
- export const name = 'eslint-plugin-svelte' ;
5
- export const version = '3.6.0' ;
4
+ export const name = 'eslint-plugin-svelte' as const ;
5
+ export const version = '3.6.0' as const ;
Original file line number Diff line number Diff line change @@ -475,6 +475,8 @@ export type ASTNodeListener = {
475
475
) => void ;
476
476
SvelteSpreadAttribute ?: ( node : AST . SvelteSpreadAttribute & ASTNodeWithParent ) => void ;
477
477
'SvelteSpreadAttribute:exit' ?: ( node : AST . SvelteSpreadAttribute & ASTNodeWithParent ) => void ;
478
+ SvelteAttachTag ?: ( node : AST . SvelteAttachTag & ASTNodeWithParent ) => void ;
479
+ 'SvelteAttachTag:exit' ?: ( node : AST . SvelteAttachTag & ASTNodeWithParent ) => void ;
478
480
SvelteDirective ?: ( node : AST . SvelteDirective & ASTNodeWithParent ) => void ;
479
481
'SvelteDirective:exit' ?: ( node : AST . SvelteDirective & ASTNodeWithParent ) => void ;
480
482
SvelteStyleDirective ?: ( node : AST . SvelteStyleDirective & ASTNodeWithParent ) => void ;
@@ -938,6 +940,8 @@ export type SvelteNodeListener = {
938
940
) => void ;
939
941
SvelteSpreadAttribute ?: ( node : AST . SvelteSpreadAttribute & ASTNodeWithParent ) => void ;
940
942
'SvelteSpreadAttribute:exit' ?: ( node : AST . SvelteSpreadAttribute & ASTNodeWithParent ) => void ;
943
+ SvelteAttachTag ?: ( node : AST . SvelteAttachTag & ASTNodeWithParent ) => void ;
944
+ 'SvelteAttachTag:exit' ?: ( node : AST . SvelteAttachTag & ASTNodeWithParent ) => void ;
941
945
SvelteDirective ?: ( node : AST . SvelteDirective & ASTNodeWithParent ) => void ;
942
946
'SvelteDirective:exit' ?: ( node : AST . SvelteDirective & ASTNodeWithParent ) => void ;
943
947
SvelteStyleDirective ?: ( node : AST . SvelteStyleDirective & ASTNodeWithParent ) => void ;
You can’t perform that action at this time.
0 commit comments