Hi,
after upgrading to typescript 1.6 I've got a compilation error in a piece of code that actually does work. I checked the definition file and I could not find any beforeSend at all! I'm using Kendo UI v2014.3.1411.
var dataSource = new kendo.data.DataSource({
transport: {
read: {
url: 'myApiUrl',
beforeSend: function (xhr) {
xhr.setRequestHeader('myAuthenticationHeader', 'myToken');
}
}
}
});