| 40 | } from "./canvas_writer.js"; |
| 41 | |
| 42 | interface CliArgs { |
| 43 | dag: string; |
| 44 | canvasPath: string; |
| 45 | cwd: string; |
| 46 | modelsFile?: string; |
| 47 | debounceMs: number; |
| 48 | taskTimeoutMs: number; |
| 49 | streamPublishMs: number; |
| 50 | streamIdleTimeoutMs: number; |
| 51 | initOnly: boolean; |
| 52 | } |
| 53 | |
| 54 | interface RunnerTaskRun { |
| 55 | stream: () => AsyncIterable<unknown>; |
nothing calls this directly
no outgoing calls
no test coverage detected