import { NotificationStepDto } from './workflow.dto'; import { NotificationTemplateCustomData } from '../../types'; export interface IUpdateWorkflowDto { name?: string; tags?: string[]; description?: string; identifier?: string; critical?: boolean; steps?: NotificationStepDto[]; notificationGroupId?: string; data?: NotificationTemplateCustomData; } //# sourceMappingURL=update-workflow.dto.d.ts.map