UNPKG

devexpress-gantt

Version:

DevExpress Gantt Control

14 lines (11 loc) 284 B
import { GanttView } from "../View/GanttView"; export interface ICommand { control: GanttView; getState(): ICommandState; execute(...parameters: any): boolean; } export interface ICommandState { enabled: boolean; visible: boolean; value: any; }