kendo-ui: fix for issue with Typescript 1.7. Allow model schemas to be defined with custom params on the model. ie, kendo.data.Model.define({ foo: function() {} });

This commit is contained in:
Levi Baker
2016-01-26 13:25:36 -08:00
parent 6a64f209b2
commit 1bc3eb9e71
+1
View File
@@ -932,6 +932,7 @@ declare module kendo.data {
interface DataSourceSchemaModel {
id?: string;
fields?: any;
[index: string]: any;
}
interface DataSourceSchemaModelWithFieldsArray extends DataSourceSchemaModel {