In the latest Kendo UI commercial zip, there is a file typescript/kendo.all.d.ts.
In the Grid class, a property is missing : the dataItems function.
You should add the bold line :
(...)
dataItem(row: JQuery): kendo.data.ObservableObject;
dataItems(): kendo.data.ObservableArray;
destroy(): void;
(...)