mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-27 13:47:58 +01:00
Fix leftover jsdoc
This commit is contained in:
parent
c8f9e7e565
commit
394c23893c
1 changed files with 1 additions and 2 deletions
|
@ -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++) {
|
||||
|
|
Loading…
Reference in a new issue