( gaps: readonly ToolInventoryGap[], )
| 97 | } |
| 98 | |
| 99 | export function indexToolInventoryGaps( |
| 100 | gaps: readonly ToolInventoryGap[], |
| 101 | ): Map<ToolInventoryGapKind, ToolInventoryGap> { |
| 102 | return new Map(gaps.map(gap => [gap.kind, gap])) |
| 103 | } |
| 104 | |
| 105 | export function buildToolInventoryReport( |
| 106 | entries: readonly ToolInventoryEntry[], |
no outgoing calls
no test coverage detected