FE_Test / types /processing.ts
GitHub Actions
Deploy from GitHub Actions [test] - 2025-10-31 10:18:25
5f2aab6
export type ProcessingStep = {
id: string;
title: string;
label?: string;
description: string;
status: 'pending' | 'processing' | 'completed' | 'error' | 'in_progress';
estimatedDuration?: number;
estimatedTime?: number;
actualTime?: number;
};