allow autocomplete on input element (jsdoc)

This commit is contained in:
LenAnderson 2024-07-05 14:00:07 -04:00
parent dce4d0c23e
commit 1ab11cf85f

View File

@ -17,7 +17,7 @@ export const AUTOCOMPLETE_WIDTH = {
};
export class AutoComplete {
/**@type {HTMLTextAreaElement}*/ textarea;
/**@type {HTMLTextAreaElement|HTMLInputElement}*/ textarea;
/**@type {boolean}*/ isFloating = false;
/**@type {()=>boolean}*/ checkIfActivate;
/**@type {(text:string, index:number) => Promise<AutoCompleteNameResult>}*/ getNameAt;