Spaces:
Sleeping
Sleeping
| export type ProcessingStep = { | |
| id: string; | |
| title: string; | |
| label?: string; | |
| description: string; | |
| status: 'pending' | 'processing' | 'completed' | 'error' | 'in_progress'; | |
| estimatedDuration?: number; | |
| estimatedTime?: number; | |
| actualTime?: number; | |
| }; | |