(tool: Tool)
| 457 | }; |
| 458 | |
| 459 | const toSearchableTool = (tool: Tool): SearchableTool => ({ |
| 460 | path: addressToPath(String(tool.address)), |
| 461 | integration: String(tool.integration), |
| 462 | name: String(tool.name), |
| 463 | description: tool.description, |
| 464 | }); |
| 465 | |
| 466 | type PreparedField = { |
| 467 | readonly raw: string; |
nothing calls this directly
no test coverage detected