(elementID: string, show: boolean)
| 406 | } |
| 407 | |
| 408 | private showElement(elementID: string, show: boolean): void { |
| 409 | // eslint-disable-next-line @typescript-eslint/no-non-null-assertion |
| 410 | document.getElementById(elementID)!.style.display = show ? "block" : "none"; |
| 411 | } |
| 412 | } |
| 413 | |
| 414 | // eslint-disable-next-line @typescript-eslint/no-unused-vars |
no outgoing calls
no test coverage detected