File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @ota-meshi/eslint-plugin-svelte" ,
3- "version" : " 0.34.0 " ,
3+ "version" : " 0.34.1 " ,
44 "publishConfig" : {
55 "access" : " public"
66 },
Original file line number Diff line number Diff line change @@ -231,6 +231,9 @@ export type ASTNodeListener = {
231231 node : TSESTree . TSExternalModuleReference & ASTNodeWithParent ,
232232 ) => void
233233 TSFunctionType ?: ( node : TSESTree . TSFunctionType & ASTNodeWithParent ) => void
234+ TSInstantiationExpression ?: (
235+ node : TSESTree . TSInstantiationExpression & ASTNodeWithParent ,
236+ ) => void
234237 TSImportEqualsDeclaration ?: (
235238 node : TSESTree . TSImportEqualsDeclaration & ASTNodeWithParent ,
236239 ) => void
@@ -567,6 +570,9 @@ export type TSNodeListener = {
567570 node : TSESTree . TSExternalModuleReference & ASTNodeWithParent ,
568571 ) => void
569572 TSFunctionType ?: ( node : TSESTree . TSFunctionType & ASTNodeWithParent ) => void
573+ TSInstantiationExpression ?: (
574+ node : TSESTree . TSInstantiationExpression & ASTNodeWithParent ,
575+ ) => void
570576 TSImportEqualsDeclaration ?: (
571577 node : TSESTree . TSImportEqualsDeclaration & ASTNodeWithParent ,
572578 ) => void
You can’t perform that action at this time.
0 commit comments