Skip to content

Commit 21fbce2

Browse files
committed
0.34.1
1 parent 1351a34 commit 21fbce2

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ota-meshi/eslint-plugin-svelte",
3-
"version": "0.34.0",
3+
"version": "0.34.1",
44
"publishConfig": {
55
"access": "public"
66
},

src/types-for-node.ts

+6
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)