mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-17 11:24:29 -05:00
fix(41822): add isJSDocSeeTag (#41835)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user