We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6260880 commit 05b2934Copy full SHA for 05b2934
lib/node-utils/is-node-of-type.ts
@@ -30,6 +30,12 @@ export const isImportDeclaration = ASTUtils.isNodeOfType(
30
export const isImportDefaultSpecifier = ASTUtils.isNodeOfType(
31
AST_NODE_TYPES.ImportDefaultSpecifier
32
);
33
+export const isTSImportEqualsDeclaration = ASTUtils.isNodeOfType(
34
+ AST_NODE_TYPES.TSImportEqualsDeclaration
35
+);
36
+export const isImportExpression = ASTUtils.isNodeOfType(
37
+ AST_NODE_TYPES.ImportExpression
38
39
export const isImportNamespaceSpecifier = ASTUtils.isNodeOfType(
40
AST_NODE_TYPES.ImportNamespaceSpecifier
41
0 commit comments