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