Result of a single block execution for JSON output
| 105 | |
| 106 | /** Result of a single block execution for JSON output */ |
| 107 | interface BlockResult { |
| 108 | id: string |
| 109 | type: string |
| 110 | label: string |
| 111 | success: boolean |
| 112 | durationMs: number |
| 113 | outputs: IOutput[] |
| 114 | error?: string | undefined |
| 115 | } |
| 116 | |
| 117 | /** Diagnosis info for a failed block */ |
| 118 | interface BlockDiagnosis { |
nothing calls this directly
no outgoing calls
no test coverage detected