(documentation)
| 91 | return |
| 92 | |
| 93 | function serializeDocumentation(documentation): string { |
| 94 | return documentation |
| 95 | .map((documentationPart) => { |
| 96 | if (documentationPart.kind === 'text') { |
| 97 | return documentationPart.text |
| 98 | } |
| 99 | return '' |
| 100 | }) |
| 101 | .join('\n') |
| 102 | } |
| 103 | |
| 104 | function visit(node: ts.Node) { |
| 105 | if (ts.isVariableStatement(node)) { |
no outgoing calls
no test coverage detected