(toolId: string)
| 4 | export type ToolRouteTarget = ToolCatalogEntry['route'] |
| 5 | |
| 6 | export function isToolInCatalog(toolId: string): boolean { |
| 7 | return toolId in TOOL_CATALOG |
| 8 | } |
| 9 | |
| 10 | export function getToolEntry(toolId: string): ToolCatalogEntry | undefined { |
| 11 | return TOOL_CATALOG[toolId] |