Skip to content

Commit cd27c19

Browse files
committed
update
1 parent 85ffb4b commit cd27c19

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

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

+8-6
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ export type ASTNodeListener = {
135135
TSEmptyBodyFunctionExpression?: (
136136
node: TSESTree.TSEmptyBodyFunctionExpression & ASTNodeWithParent
137137
) => void;
138+
TSEnumBody?: (node: TSESTree.TSEnumBody & ASTNodeWithParent) => void;
138139
TSEnumDeclaration?: (node: TSESTree.TSEnumDeclaration & ASTNodeWithParent) => void;
139140
TSEnumMember?: (node: TSESTree.TSEnumMember & ASTNodeWithParent) => void;
140141
TSExportAssignment?: (node: TSESTree.TSExportAssignment & ASTNodeWithParent) => void;
@@ -143,16 +144,16 @@ export type ASTNodeListener = {
143144
node: TSESTree.TSExternalModuleReference & ASTNodeWithParent
144145
) => void;
145146
TSFunctionType?: (node: TSESTree.TSFunctionType & ASTNodeWithParent) => void;
146-
TSInstantiationExpression?: (
147-
node: TSESTree.TSInstantiationExpression & ASTNodeWithParent
148-
) => void;
149147
TSImportEqualsDeclaration?: (
150148
node: TSESTree.TSImportEqualsDeclaration & ASTNodeWithParent
151149
) => void;
152150
TSImportType?: (node: TSESTree.TSImportType & ASTNodeWithParent) => void;
153151
TSIndexedAccessType?: (node: TSESTree.TSIndexedAccessType & ASTNodeWithParent) => void;
154152
TSIndexSignature?: (node: TSESTree.TSIndexSignature & ASTNodeWithParent) => void;
155153
TSInferType?: (node: TSESTree.TSInferType & ASTNodeWithParent) => void;
154+
TSInstantiationExpression?: (
155+
node: TSESTree.TSInstantiationExpression & ASTNodeWithParent
156+
) => void;
156157
TSInterfaceBody?: (node: TSESTree.TSInterfaceBody & ASTNodeWithParent) => void;
157158
TSInterfaceDeclaration?: (node: TSESTree.TSInterfaceDeclaration & ASTNodeWithParent) => void;
158159
TSInterfaceHeritage?: (node: TSESTree.TSInterfaceHeritage & ASTNodeWithParent) => void;
@@ -354,6 +355,7 @@ export type TSNodeListener = {
354355
TSEmptyBodyFunctionExpression?: (
355356
node: TSESTree.TSEmptyBodyFunctionExpression & ASTNodeWithParent
356357
) => void;
358+
TSEnumBody?: (node: TSESTree.TSEnumBody & ASTNodeWithParent) => void;
357359
TSEnumDeclaration?: (node: TSESTree.TSEnumDeclaration & ASTNodeWithParent) => void;
358360
TSEnumMember?: (node: TSESTree.TSEnumMember & ASTNodeWithParent) => void;
359361
TSExportAssignment?: (node: TSESTree.TSExportAssignment & ASTNodeWithParent) => void;
@@ -362,16 +364,16 @@ export type TSNodeListener = {
362364
node: TSESTree.TSExternalModuleReference & ASTNodeWithParent
363365
) => void;
364366
TSFunctionType?: (node: TSESTree.TSFunctionType & ASTNodeWithParent) => void;
365-
TSInstantiationExpression?: (
366-
node: TSESTree.TSInstantiationExpression & ASTNodeWithParent
367-
) => void;
368367
TSImportEqualsDeclaration?: (
369368
node: TSESTree.TSImportEqualsDeclaration & ASTNodeWithParent
370369
) => void;
371370
TSImportType?: (node: TSESTree.TSImportType & ASTNodeWithParent) => void;
372371
TSIndexedAccessType?: (node: TSESTree.TSIndexedAccessType & ASTNodeWithParent) => void;
373372
TSIndexSignature?: (node: TSESTree.TSIndexSignature & ASTNodeWithParent) => void;
374373
TSInferType?: (node: TSESTree.TSInferType & ASTNodeWithParent) => void;
374+
TSInstantiationExpression?: (
375+
node: TSESTree.TSInstantiationExpression & ASTNodeWithParent
376+
) => void;
375377
TSInterfaceBody?: (node: TSESTree.TSInterfaceBody & ASTNodeWithParent) => void;
376378
TSInterfaceDeclaration?: (node: TSESTree.TSInterfaceDeclaration & ASTNodeWithParent) => void;
377379
TSInterfaceHeritage?: (node: TSESTree.TSInterfaceHeritage & ASTNodeWithParent) => void;

0 commit comments

Comments
 (0)