| 3 | import { fileURLToPath } from "node:url"; |
| 4 | |
| 5 | export interface SimpleTaskResult { |
| 6 | flow_run_id: string; |
| 7 | flow_run_name: string; |
| 8 | task_run_ids: string[]; |
| 9 | task_run_names: string[]; |
| 10 | } |
| 11 | |
| 12 | export interface ParentChildResult { |
| 13 | parent_flow_run_id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…