Completed
Last Updated: 10 Sep 2021 06:43 by ADMIN
Imported User
Created on: 02 Apr 2015 16:09
Category: Kendo UI for jQuery
Type: Feature Request
8
Typescript : Union Types in definition files kendo.all.d.ts
Reduce use of the 'any' type in kendo.all.d.ts and use Union types implemented in TypeScript 1.4

Example:
- Before:
  
    interface GridColumnFilterable {
        ...
        ui?: any;
        ...
    }
    
- After:
    
    interface GridColumnFilterable {
        ...
        ui?: string | GridColumnFilterableUIEvent;
        ...
    }
1 comment
Iman
Posted on: 10 Apr 2015 11:35
Sounds great!
I don't know why Kendo TS updated rarely, For example returned type of sync() is void which should be jquery deferred.