MCPcopy
hub / github.com/lightningpixel/modly / WorkflowRunState

Interface WorkflowRunState

src/areas/workflows/workflowRunStore.ts:11–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9// ─── Types ────────────────────────────────────────────────────────────────────
10
11export interface WorkflowRunState {
12 status: 'idle' | 'running' | 'paused' | 'done' | 'error'
13 blockIndex: number
14 blockTotal: number
15 blockProgress: number
16 blockStep: string
17 outputUrl?: string
18 outputPath?: string
19 error?: string
20}
21
22export type WaitState = 'blocked' | 'pending' | 'running' | 'done' | 'error'
23

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected