* Partial tool data from tools.json configuration
| 59 | * Partial tool data from tools.json configuration |
| 60 | */ |
| 61 | interface ToolConfig { |
| 62 | tool?: string; |
| 63 | repository?: string; |
| 64 | type?: string; |
| 65 | function?: ToolFunction; |
| 66 | alias?: string; |
| 67 | domain?: string; |
| 68 | extension?: string; |
| 69 | fetch_latest?: 'true' | 'false'; |
| 70 | scope?: string; |
| 71 | version_parameter?: string; |
| 72 | version_prefix?: string; |
| 73 | packagist?: string; |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * GitHub reference object from API response |
nothing calls this directly
no outgoing calls
no test coverage detected