Is there an event in handsontable that it is trigger with any change in the data (not only editions) but if I create a new row, or a new column I get the new data.
`
function beforeAnyChange(newData, sourceEvent) {
}
`
new Data is an array with the new model.
[[1, 2, 3]] -> [[1,2,3,4]]
Thanks.