type signatures

This commit is contained in:
rhiannon morris 2024-07-07 20:19:24 +02:00
parent 97660781a7
commit fe338b2f3f
2 changed files with 4 additions and 5 deletions

View file

@ -174,7 +174,7 @@ function sortFiltersUses(e: Event) {
function setup() {
function inputs(id: string) {
function inputs(id: string): Boxes {
let iter = document.getElementById(id)!.getElementsByTagName('input');
return new Set(Array.from(iter));
}