FE_Dev / types /processing.ts
GitHub Actions
Deploy from GitHub Actions [dev] - 2025-10-31 07:28:50
68f7925
export type ProcessingStep = {
id: string;
title: string;
label?: string;
description: string;
status: 'pending' | 'processing' | 'completed' | 'error' | 'in_progress';
estimatedDuration?: number;
estimatedTime?: number;
actualTime?: number;
};