(number: number)
| 219 | } |
| 220 | |
| 221 | async function deleteElement(number: number) { |
| 222 | elements.splice(number, 1); |
| 223 | setElements(elements); |
| 224 | focusElement(number - 1); |
| 225 | } |
| 226 | |
| 227 | /** Sets the subject for a specific element and moves to the next element */ |
| 228 | async function setElement(index: number, subject: string) { |
no test coverage detected