(tool: Tool)
| 465 | }; |
| 466 | |
| 467 | const toSearchableTool = (tool: Tool): SearchableTool => ({ |
| 468 | path: addressToPath(String(tool.address)), |
| 469 | integration: String(tool.integration), |
| 470 | name: String(tool.name), |
| 471 | description: tool.description, |
| 472 | }); |
| 473 | |
| 474 | type PreparedField = { |
| 475 | readonly raw: string; |
nothing calls this directly
no test coverage detected