Files
DefinitelyTyped/types/kendo-ui
Shawn Clabough dc55760848 Update index.d.ts for Kendo-UI GridColumn definition (#22100)
* Update index.d.ts

Since the command property of a GridColumn can be an array of strings, for example:

{ command: ["edit", "destroy"], title: " ", width: "250px" }

The current definition is

command?: GridColumnCommandItem[];

but it should be

command?: (string|GridColumnCommandItem)[];

* Update index.d.ts for Kendo-UI GridColumn definition

Additional update for command property of GridColumn - following documentation at https://docs.telerik.com/kendo-ui/api/jsp/grid/column-commanditem
2018-01-03 11:22:17 -08:00
..