(text: string)
| 1135 | } |
| 1136 | |
| 1137 | function mkNote(text: string): HTMLDivElement { |
| 1138 | const d = document.createElement("div"); |
| 1139 | d.className = "op-note"; |
| 1140 | d.textContent = text; |
| 1141 | return d; |
| 1142 | } |
| 1143 | |
| 1144 | function opRow(...children: HTMLElement[]): HTMLDivElement { |
| 1145 | const d = document.createElement("div"); |
no outgoing calls
no test coverage detected