mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-12 03:46:07 +08:00
* 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