(tool: Tool)
| 419 | }; |
| 420 | |
| 421 | const toSearchableTool = (tool: Tool): SearchableTool => ({ |
| 422 | path: addressToPath(String(tool.address)), |
| 423 | integration: String(tool.integration), |
| 424 | name: String(tool.name), |
| 425 | description: tool.description, |
| 426 | }); |
| 427 | |
| 428 | type PreparedField = { |
| 429 | readonly raw: string; |
nothing calls this directly
no test coverage detected