| 12 | import YAML from "yaml"; |
| 13 | |
| 14 | interface WorkflowInput { |
| 15 | description: string; |
| 16 | type: string; |
| 17 | default: boolean; |
| 18 | } |
| 19 | |
| 20 | interface WorkflowInputs { |
| 21 | [key: string]: WorkflowInput; |
nothing calls this directly
no outgoing calls
no test coverage detected