(declarations: ReadonlyArray<DeclarationModel>)
| 541 | } |
| 542 | |
| 543 | const declarationKind = (declarations: ReadonlyArray<DeclarationModel>): string => |
| 544 | [...new Set(declarations.map((declaration) => declaration.kind))].sort().join("+") |
| 545 | |
| 546 | const documentation = (symbol: ts.Symbol, checker: ts.TypeChecker, module: string): Documentation => { |
| 547 | const tags = new Map( |
no test coverage detected