(comp: { signature: string; description?: string })
| 548 | } |
| 549 | |
| 550 | const formatSig = (comp: { signature: string; description?: string }) => |
| 551 | comp.description ? `${comp.signature} — ${comp.description}` : comp.signature; |
| 552 | |
| 553 | if (spec.componentGroups?.length) { |
| 554 | const grouped = new Set<string>(); |
no outgoing calls
no test coverage detected