@@ -17,7 +17,6 @@ export type ASTNodeWithParent =
17
17
| AST . SvelteProgram ;
18
18
19
19
export type ASTNodeListener = {
20
- AccessorProperty ?: ( node : TSESTree . AccessorProperty & ASTNodeWithParent ) => void ;
21
20
ArrayExpression ?: ( node : TSESTree . ArrayExpression & ASTNodeWithParent ) => void ;
22
21
ArrayPattern ?: ( node : TSESTree . ArrayPattern & ASTNodeWithParent ) => void ;
23
22
ArrowFunctionExpression ?: ( node : TSESTree . ArrowFunctionExpression & ASTNodeWithParent ) => void ;
@@ -105,9 +104,6 @@ export type ASTNodeListener = {
105
104
WhileStatement ?: ( node : TSESTree . WhileStatement & ASTNodeWithParent ) => void ;
106
105
WithStatement ?: ( node : TSESTree . WithStatement & ASTNodeWithParent ) => void ;
107
106
YieldExpression ?: ( node : TSESTree . YieldExpression & ASTNodeWithParent ) => void ;
108
- TSAbstractAccessorProperty ?: (
109
- node : TSESTree . TSAbstractAccessorProperty & ASTNodeWithParent
110
- ) => void ;
111
107
TSAbstractKeyword ?: ( node : TSESTree . TSAbstractKeyword & ASTNodeWithParent ) => void ;
112
108
TSAbstractMethodDefinition ?: (
113
109
node : TSESTree . TSAbstractMethodDefinition & ASTNodeWithParent
@@ -183,7 +179,6 @@ export type ASTNodeListener = {
183
179
TSQualifiedName ?: ( node : TSESTree . TSQualifiedName & ASTNodeWithParent ) => void ;
184
180
TSReadonlyKeyword ?: ( node : TSESTree . TSReadonlyKeyword & ASTNodeWithParent ) => void ;
185
181
TSRestType ?: ( node : TSESTree . TSRestType & ASTNodeWithParent ) => void ;
186
- TSSatisfiesExpression ?: ( node : TSESTree . TSSatisfiesExpression & ASTNodeWithParent ) => void ;
187
182
TSStaticKeyword ?: ( node : TSESTree . TSStaticKeyword & ASTNodeWithParent ) => void ;
188
183
TSStringKeyword ?: ( node : TSESTree . TSStringKeyword & ASTNodeWithParent ) => void ;
189
184
TSSymbolKeyword ?: ( node : TSESTree . TSSymbolKeyword & ASTNodeWithParent ) => void ;
@@ -245,7 +240,6 @@ export type ASTNodeListener = {
245
240
} ;
246
241
247
242
export type ESNodeListener = {
248
- AccessorProperty ?: ( node : TSESTree . AccessorProperty & ASTNodeWithParent ) => void ;
249
243
ArrayExpression ?: ( node : TSESTree . ArrayExpression & ASTNodeWithParent ) => void ;
250
244
ArrayPattern ?: ( node : TSESTree . ArrayPattern & ASTNodeWithParent ) => void ;
251
245
ArrowFunctionExpression ?: ( node : TSESTree . ArrowFunctionExpression & ASTNodeWithParent ) => void ;
@@ -323,9 +317,6 @@ export type TSNodeListener = {
323
317
Decorator ?: ( node : TSESTree . Decorator & ASTNodeWithParent ) => void ;
324
318
ImportAttribute ?: ( node : TSESTree . ImportAttribute & ASTNodeWithParent ) => void ;
325
319
StaticBlock ?: ( node : TSESTree . StaticBlock & ASTNodeWithParent ) => void ;
326
- TSAbstractAccessorProperty ?: (
327
- node : TSESTree . TSAbstractAccessorProperty & ASTNodeWithParent
328
- ) => void ;
329
320
TSAbstractKeyword ?: ( node : TSESTree . TSAbstractKeyword & ASTNodeWithParent ) => void ;
330
321
TSAbstractMethodDefinition ?: (
331
322
node : TSESTree . TSAbstractMethodDefinition & ASTNodeWithParent
@@ -401,7 +392,6 @@ export type TSNodeListener = {
401
392
TSQualifiedName ?: ( node : TSESTree . TSQualifiedName & ASTNodeWithParent ) => void ;
402
393
TSReadonlyKeyword ?: ( node : TSESTree . TSReadonlyKeyword & ASTNodeWithParent ) => void ;
403
394
TSRestType ?: ( node : TSESTree . TSRestType & ASTNodeWithParent ) => void ;
404
- TSSatisfiesExpression ?: ( node : TSESTree . TSSatisfiesExpression & ASTNodeWithParent ) => void ;
405
395
TSStaticKeyword ?: ( node : TSESTree . TSStaticKeyword & ASTNodeWithParent ) => void ;
406
396
TSStringKeyword ?: ( node : TSESTree . TSStringKeyword & ASTNodeWithParent ) => void ;
407
397
TSSymbolKeyword ?: ( node : TSESTree . TSSymbolKeyword & ASTNodeWithParent ) => void ;
0 commit comments