Trying to use handsontable in typescript without a definition file
$("#myTable").handsontable({...})
this causes the complier to complain "The property handsontable does not exist on value of type Jquery"
how can i declare handsontable ?
You can extend JQuery in this way:
interface JQuery {
handsontable(): JQuery;
}