| 26 | import { haveArrowKeys } from "../core/platform.ts"; |
| 27 | |
| 28 | interface ToolInfo { |
| 29 | tool: InstallableTool; |
| 30 | installed: boolean; |
| 31 | version?: string; |
| 32 | latest: RemotePackageInfo; |
| 33 | } |
| 34 | |
| 35 | export async function outputTools() { |
| 36 | const toolRows: string[][] = []; |
nothing calls this directly
no outgoing calls
no test coverage detected