(items: Instruction[])
| 74 | } |
| 75 | |
| 76 | function renderItems(items: Instruction[]): void { |
| 77 | const list = document.getElementById('resource-list'); |
| 78 | if (!list) return; |
| 79 | |
| 80 | list.innerHTML = renderInstructionsHtml(items); |
| 81 | } |
| 82 | |
| 83 | function openInstructionDetailsModal(path: string, trigger?: HTMLElement): void { |
| 84 | const item = instructionByPath.get(path); |
no test coverage detected