/** * The ExecutionView tab definition interface. */ export interface ExecutionViewTabDef { /** * The id of the wizard step */ id?: string; /** * The title of the wizard step */ mainTitle: string; /** * Indicates if the is the current one */ isActive?: boolean; /** * If the tab shouldn't even be displayed (due to context) * * @property {boolean} isHidden */ isHidden?: boolean; /** * When the tab was already visited */ isVisited?: boolean; /** * If the tab is disabled or not */ isEnabled?: boolean; /** * Custom attribute */ customAttribute?: string; }