Quale sarebbe la sintassi semanticamente equivalente a macchina per la seguente riga nel javascriptCome rilevare il tasto premuto in TypeScript?
//Some knockout event handler.
myFunc(data : string, evt : Event) {
//If enter or tab key up were detected add the excuse to the collection.
if(evt.enterKey || evt.which == 9)
//Do Something
}
Il problema che sto avendo qui è diverso da regolare evento javascript, classe dattiloscritto di evento non ha una proprietà enterKey
o which
. Quindi, come faccio a scoprire quale tasto viene premuto senza ottenere errore di compilazione dattiloscritto e la brutta sottolineatura rosso brutto?