@@ -17,7 +17,6 @@ export type ASTNodeWithParent =
1717 | AST . SvelteProgram ;
1818
1919export type ASTNodeListener = {
20- AccessorProperty ?: ( node : TSESTree . AccessorProperty & ASTNodeWithParent ) => void ;
2120 ArrayExpression ?: ( node : TSESTree . ArrayExpression & ASTNodeWithParent ) => void ;
2221 ArrayPattern ?: ( node : TSESTree . ArrayPattern & ASTNodeWithParent ) => void ;
2322 ArrowFunctionExpression ?: ( node : TSESTree . ArrowFunctionExpression & ASTNodeWithParent ) => void ;
@@ -105,9 +104,6 @@ export type ASTNodeListener = {
105104 WhileStatement ?: ( node : TSESTree . WhileStatement & ASTNodeWithParent ) => void ;
106105 WithStatement ?: ( node : TSESTree . WithStatement & ASTNodeWithParent ) => void ;
107106 YieldExpression ?: ( node : TSESTree . YieldExpression & ASTNodeWithParent ) => void ;
108- TSAbstractAccessorProperty ?: (
109- node : TSESTree . TSAbstractAccessorProperty & ASTNodeWithParent
110- ) => void ;
111107 TSAbstractKeyword ?: ( node : TSESTree . TSAbstractKeyword & ASTNodeWithParent ) => void ;
112108 TSAbstractMethodDefinition ?: (
113109 node : TSESTree . TSAbstractMethodDefinition & ASTNodeWithParent
@@ -183,7 +179,6 @@ export type ASTNodeListener = {
183179 TSQualifiedName ?: ( node : TSESTree . TSQualifiedName & ASTNodeWithParent ) => void ;
184180 TSReadonlyKeyword ?: ( node : TSESTree . TSReadonlyKeyword & ASTNodeWithParent ) => void ;
185181 TSRestType ?: ( node : TSESTree . TSRestType & ASTNodeWithParent ) => void ;
186- TSSatisfiesExpression ?: ( node : TSESTree . TSSatisfiesExpression & ASTNodeWithParent ) => void ;
187182 TSStaticKeyword ?: ( node : TSESTree . TSStaticKeyword & ASTNodeWithParent ) => void ;
188183 TSStringKeyword ?: ( node : TSESTree . TSStringKeyword & ASTNodeWithParent ) => void ;
189184 TSSymbolKeyword ?: ( node : TSESTree . TSSymbolKeyword & ASTNodeWithParent ) => void ;
@@ -245,7 +240,6 @@ export type ASTNodeListener = {
245240} ;
246241
247242export type ESNodeListener = {
248- AccessorProperty ?: ( node : TSESTree . AccessorProperty & ASTNodeWithParent ) => void ;
249243 ArrayExpression ?: ( node : TSESTree . ArrayExpression & ASTNodeWithParent ) => void ;
250244 ArrayPattern ?: ( node : TSESTree . ArrayPattern & ASTNodeWithParent ) => void ;
251245 ArrowFunctionExpression ?: ( node : TSESTree . ArrowFunctionExpression & ASTNodeWithParent ) => void ;
@@ -323,9 +317,6 @@ export type TSNodeListener = {
323317 Decorator ?: ( node : TSESTree . Decorator & ASTNodeWithParent ) => void ;
324318 ImportAttribute ?: ( node : TSESTree . ImportAttribute & ASTNodeWithParent ) => void ;
325319 StaticBlock ?: ( node : TSESTree . StaticBlock & ASTNodeWithParent ) => void ;
326- TSAbstractAccessorProperty ?: (
327- node : TSESTree . TSAbstractAccessorProperty & ASTNodeWithParent
328- ) => void ;
329320 TSAbstractKeyword ?: ( node : TSESTree . TSAbstractKeyword & ASTNodeWithParent ) => void ;
330321 TSAbstractMethodDefinition ?: (
331322 node : TSESTree . TSAbstractMethodDefinition & ASTNodeWithParent
@@ -401,7 +392,6 @@ export type TSNodeListener = {
401392 TSQualifiedName ?: ( node : TSESTree . TSQualifiedName & ASTNodeWithParent ) => void ;
402393 TSReadonlyKeyword ?: ( node : TSESTree . TSReadonlyKeyword & ASTNodeWithParent ) => void ;
403394 TSRestType ?: ( node : TSESTree . TSRestType & ASTNodeWithParent ) => void ;
404- TSSatisfiesExpression ?: ( node : TSESTree . TSSatisfiesExpression & ASTNodeWithParent ) => void ;
405395 TSStaticKeyword ?: ( node : TSESTree . TSStaticKeyword & ASTNodeWithParent ) => void ;
406396 TSStringKeyword ?: ( node : TSESTree . TSStringKeyword & ASTNodeWithParent ) => void ;
407397 TSSymbolKeyword ?: ( node : TSESTree . TSSymbolKeyword & ASTNodeWithParent ) => void ;
0 commit comments