fix(41822): add isJSDocSeeTag (#41835)

This commit is contained in:
Oleksandr T
2020-12-16 01:34:22 +02:00
committed by GitHub
parent b9f372ed00
commit 73df9eaec7
3 changed files with 7 additions and 1 deletions

View File

@@ -787,8 +787,12 @@ namespace ts {
export function isJSDocDeprecatedTag(node: Node): node is JSDocDeprecatedTag {
return node.kind === SyntaxKind.JSDocDeprecatedTag;
}
export function isJSDocSeeTag(node: Node): node is JSDocSeeTag {
return node.kind === SyntaxKind.JSDocSeeTag;
}
export function isJSDocEnumTag(node: Node): node is JSDocEnumTag {
return node.kind === SyntaxKind.JSDocEnumTag;
}