export interface IWorkTaskCommandSubmit { id: number; name: string; order: number; $type: string; } export interface IScriptCommandSubmit extends IWorkTaskCommandSubmit { script: string; }