()
| 2 | const getModal = () => document.querySelector<HTMLDialogElement>(`#${modalId}`) |
| 3 | |
| 4 | function open() { |
| 5 | const modal = getModal() |
| 6 | if (modal) { |
| 7 | setTimeout(() => { |
| 8 | modal.showModal() |
| 9 | }) |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | function close() { |
| 14 | const modal = getModal() |
nothing calls this directly
no test coverage detected