Skip to content

Commit

Permalink
Expose isImportTypeNode (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajafff committed Jun 4, 2018
1 parent 6cb0b52 commit 0f5fb0c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion typeguard/node.ts
Expand Up @@ -325,7 +325,6 @@ export function isImportSpecifier(node: ts.Node): node is ts.ImportSpecifier {
return node.kind === ts.SyntaxKind.ImportSpecifier;
}

// @internal
export function isImportTypeNode(node: ts.Node): node is ts.ImportTypeNode {
return node.kind === ts.SyntaxKind.ImportType;
}
Expand Down

0 comments on commit 0f5fb0c

Please sign in to comment.