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