When trying to edit, add or delete from a grid I am using the external form or reactive forms editing customization setup described on the Kendo UI site. I'm getting these 2 errors
Build:Binding element 'dataItem' implicitly has an 'any' type
Build:Binding element 'sender' implicitly has an 'any' type
These are the locations where they are called. Any suggestions would help. Thanks
protected addHandler({ sender }) {
protected addHandler(sender: any) {
this.closeEditor(sender);
sender.addRow(new Product());
}
public editHandler({ dataItem }) {
this.editDataItem = dataItem;
this.isNew = false;
}