(tools: Tools, name: string)
| 356 | * Finds a tool by name or alias from a list of tools. |
| 357 | */ |
| 358 | export function findToolByName(tools: Tools, name: string): Tool | undefined { |
| 359 | return tools.find(t => toolMatchesName(t, name)) |
| 360 | } |
| 361 | |
| 362 | export type Tool< |
| 363 | Input extends AnyObject = AnyObject, |
no test coverage detected