(tool: ToolListItem)
| 42 | }; |
| 43 | |
| 44 | function toJsonToolBase(tool: ToolListItem): JsonToolBase { |
| 45 | return { |
| 46 | name: tool.cliName, |
| 47 | command: tool.command, |
| 48 | description: tool.description, |
| 49 | stateful: tool.stateful, |
| 50 | }; |
| 51 | } |
| 52 | |
| 53 | function withCanonicalWorkflow<T extends object>( |
| 54 | tool: ToolListItem, |
no outgoing calls
no test coverage detected