14
Come sopprimere "errore TS2533: l'oggetto è probabilmente" null "o" non definito ""?
Ho un type: type tSelectProtected = { handleSelector?: string, data?: tSelectDataItem[], wrapperEle?: HTMLElement, inputEle?: HTMLElement, listEle?: HTMLElement, resultEle?: HTMLElement, maxVisibleListItems?: number } Dichiaro una variabile globale a livello di modulo: var $protected : tSelectProtected = {}; Sto assegnando il valore corretto function1()nell'ambito: $protected.listEle = document.createElement('DIV'); Più tardi function2()nell'ambito, sto chiamando: …
226
typescript