File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @ota-meshi/eslint-plugin-svelte" ,
3
- "version" : " 0.34.0 " ,
3
+ "version" : " 0.34.1 " ,
4
4
"publishConfig" : {
5
5
"access" : " public"
6
6
},
Original file line number Diff line number Diff line change @@ -231,6 +231,9 @@ export type ASTNodeListener = {
231
231
node : TSESTree . TSExternalModuleReference & ASTNodeWithParent ,
232
232
) => void
233
233
TSFunctionType ?: ( node : TSESTree . TSFunctionType & ASTNodeWithParent ) => void
234
+ TSInstantiationExpression ?: (
235
+ node : TSESTree . TSInstantiationExpression & ASTNodeWithParent ,
236
+ ) => void
234
237
TSImportEqualsDeclaration ?: (
235
238
node : TSESTree . TSImportEqualsDeclaration & ASTNodeWithParent ,
236
239
) => void
@@ -567,6 +570,9 @@ export type TSNodeListener = {
567
570
node : TSESTree . TSExternalModuleReference & ASTNodeWithParent ,
568
571
) => void
569
572
TSFunctionType ?: ( node : TSESTree . TSFunctionType & ASTNodeWithParent ) => void
573
+ TSInstantiationExpression ?: (
574
+ node : TSESTree . TSInstantiationExpression & ASTNodeWithParent ,
575
+ ) => void
570
576
TSImportEqualsDeclaration ?: (
571
577
node : TSESTree . TSImportEqualsDeclaration & ASTNodeWithParent ,
572
578
) => void
You can’t perform that action at this time.
0 commit comments