diff --git a/assets/js/utils/local-autocompleter.ts b/assets/js/utils/local-autocompleter.ts index 1e8b17e6..73d88f92 100644 --- a/assets/js/utils/local-autocompleter.ts +++ b/assets/js/utils/local-autocompleter.ts @@ -63,8 +63,7 @@ export class LocalAutocompleter { const nameLength = this.view.getUint8(location); const assnLength = this.view.getUint8(location + 1 + nameLength); - /** @type {number[]} */ - const associations = []; + const associations: number[] = []; const name = this.decoder.decode(this.data.slice(location + 1, location + nameLength + 1)); for (let i = 0; i < assnLength; i++) {