| 3 | export type WorkflowStatus = 'idle' | 'running' | 'completed' | 'error' | 'cancelled'; |
| 4 | |
| 5 | export interface WorkflowStep { |
| 6 | id: string; |
| 7 | title: string; |
| 8 | subtitle: string; |
| 9 | progress: number; |
| 10 | status: 'pending' | 'active' | 'completed' | 'error'; |
| 11 | } |
| 12 | |
| 13 | export interface WorkflowTask { |
| 14 | taskId: string; |
nothing calls this directly
no outgoing calls
no test coverage detected