(
tags: T,
node: ts.Node,
block: JSDocBlock,
linkContext: { readonly checker: ts.TypeChecker; readonly entry: ProgramCacheEntry; readonly cwd: string }
)
| 1725 | return block !== undefined && !block.internal && block.parsed !== undefined |
| 1726 | }) |
| 1727 | } |
| 1728 | |
| 1729 | function isMemberDeclaration(declaration: ts.Declaration): boolean { |
| 1730 | return ts.isPropertySignature(declaration) || ts.isMethodSignature(declaration) || |
| 1731 | ts.isPropertyDeclaration(declaration) || ts.isMethodDeclaration(declaration) || |
| 1732 | ts.isGetAccessorDeclaration(declaration) || ts.isSetAccessorDeclaration(declaration) |
| 1733 | } |
| 1734 | |
| 1735 | function undocumentedSeeLinkTarget( |
| 1736 | symbol: ts.Symbol, |
| 1737 | checker: ts.TypeChecker, |
no test coverage detected
searching dependent graphs…