Files
DefinitelyTyped/types/kendo-ui
Shawn Clabough fb4fc8d1c2 Update index.d.ts for Kendo-UI GridColumn definition (#23166)
Since the command property of a GridColumn can be an array of strings or string, for example:

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

The current definition is
command?: GridColumnCommandItem[];

but it should be
string|(string|GridColumnCommandItem)[];

Following documentation at https://docs.telerik.com/kendo-ui/api/jsp/grid/column-commanditem
2018-01-29 12:34:02 -08:00
..