@@ -135,6 +135,7 @@ export type ASTNodeListener = {
135
135
TSEmptyBodyFunctionExpression ?: (
136
136
node : TSESTree . TSEmptyBodyFunctionExpression & ASTNodeWithParent
137
137
) => void ;
138
+ TSEnumBody ?: ( node : TSESTree . TSEnumBody & ASTNodeWithParent ) => void ;
138
139
TSEnumDeclaration ?: ( node : TSESTree . TSEnumDeclaration & ASTNodeWithParent ) => void ;
139
140
TSEnumMember ?: ( node : TSESTree . TSEnumMember & ASTNodeWithParent ) => void ;
140
141
TSExportAssignment ?: ( node : TSESTree . TSExportAssignment & ASTNodeWithParent ) => void ;
@@ -143,16 +144,16 @@ export type ASTNodeListener = {
143
144
node : TSESTree . TSExternalModuleReference & ASTNodeWithParent
144
145
) => void ;
145
146
TSFunctionType ?: ( node : TSESTree . TSFunctionType & ASTNodeWithParent ) => void ;
146
- TSInstantiationExpression ?: (
147
- node : TSESTree . TSInstantiationExpression & ASTNodeWithParent
148
- ) => void ;
149
147
TSImportEqualsDeclaration ?: (
150
148
node : TSESTree . TSImportEqualsDeclaration & ASTNodeWithParent
151
149
) => void ;
152
150
TSImportType ?: ( node : TSESTree . TSImportType & ASTNodeWithParent ) => void ;
153
151
TSIndexedAccessType ?: ( node : TSESTree . TSIndexedAccessType & ASTNodeWithParent ) => void ;
154
152
TSIndexSignature ?: ( node : TSESTree . TSIndexSignature & ASTNodeWithParent ) => void ;
155
153
TSInferType ?: ( node : TSESTree . TSInferType & ASTNodeWithParent ) => void ;
154
+ TSInstantiationExpression ?: (
155
+ node : TSESTree . TSInstantiationExpression & ASTNodeWithParent
156
+ ) => void ;
156
157
TSInterfaceBody ?: ( node : TSESTree . TSInterfaceBody & ASTNodeWithParent ) => void ;
157
158
TSInterfaceDeclaration ?: ( node : TSESTree . TSInterfaceDeclaration & ASTNodeWithParent ) => void ;
158
159
TSInterfaceHeritage ?: ( node : TSESTree . TSInterfaceHeritage & ASTNodeWithParent ) => void ;
@@ -354,6 +355,7 @@ export type TSNodeListener = {
354
355
TSEmptyBodyFunctionExpression ?: (
355
356
node : TSESTree . TSEmptyBodyFunctionExpression & ASTNodeWithParent
356
357
) => void ;
358
+ TSEnumBody ?: ( node : TSESTree . TSEnumBody & ASTNodeWithParent ) => void ;
357
359
TSEnumDeclaration ?: ( node : TSESTree . TSEnumDeclaration & ASTNodeWithParent ) => void ;
358
360
TSEnumMember ?: ( node : TSESTree . TSEnumMember & ASTNodeWithParent ) => void ;
359
361
TSExportAssignment ?: ( node : TSESTree . TSExportAssignment & ASTNodeWithParent ) => void ;
@@ -362,16 +364,16 @@ export type TSNodeListener = {
362
364
node : TSESTree . TSExternalModuleReference & ASTNodeWithParent
363
365
) => void ;
364
366
TSFunctionType ?: ( node : TSESTree . TSFunctionType & ASTNodeWithParent ) => void ;
365
- TSInstantiationExpression ?: (
366
- node : TSESTree . TSInstantiationExpression & ASTNodeWithParent
367
- ) => void ;
368
367
TSImportEqualsDeclaration ?: (
369
368
node : TSESTree . TSImportEqualsDeclaration & ASTNodeWithParent
370
369
) => void ;
371
370
TSImportType ?: ( node : TSESTree . TSImportType & ASTNodeWithParent ) => void ;
372
371
TSIndexedAccessType ?: ( node : TSESTree . TSIndexedAccessType & ASTNodeWithParent ) => void ;
373
372
TSIndexSignature ?: ( node : TSESTree . TSIndexSignature & ASTNodeWithParent ) => void ;
374
373
TSInferType ?: ( node : TSESTree . TSInferType & ASTNodeWithParent ) => void ;
374
+ TSInstantiationExpression ?: (
375
+ node : TSESTree . TSInstantiationExpression & ASTNodeWithParent
376
+ ) => void ;
375
377
TSInterfaceBody ?: ( node : TSESTree . TSInterfaceBody & ASTNodeWithParent ) => void ;
376
378
TSInterfaceDeclaration ?: ( node : TSESTree . TSInterfaceDeclaration & ASTNodeWithParent ) => void ;
377
379
TSInterfaceHeritage ?: ( node : TSESTree . TSInterfaceHeritage & ASTNodeWithParent ) => void ;
0 commit comments