In an object, I need to call out to a function on that page that is not part of the typescript file. As typescript doesn't know about it, it fails to compile.
How do I tell typescript that the call is fine and to let it through? function name is MY_PERSONAL_FUNCTION in this example
var dataSource = new kendo.data.DataSource({
error: (e) => { MY_PERSONAL_FUNCTION (e); },
.d.tsfile for Kendo.