MCPcopy
hub / github.com/xintaofei/codeg / Task

Interface Task

src/contexts/task-context.tsx:14–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12export type TaskStatus = "pending" | "running" | "completed" | "failed"
13
14export interface Task {
15 id: string
16 label: string
17 description?: string
18 status: TaskStatus
19 progress?: number
20 error?: string
21}
22
23interface TaskContextValue {
24 tasks: Task[]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected