(symbol: ts.Symbol, checker: ts.TypeChecker)
| 1720 | } |
| 1721 | |
| 1722 | function symbolHasPublicJSDoc(symbol: ts.Symbol, checker: ts.TypeChecker): boolean { |
| 1723 | return symbolDeclarations(symbol, checker).some((declaration) => { |
| 1724 | const block = getNodeJSDoc(declaration) |
| 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) || |
no test coverage detected