MCPcopy
hub / github.com/HKUDS/DeepCode / WorkflowStep

Interface WorkflowStep

new_ui/frontend/src/types/workflow.ts:5–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected