(tools: Tools, name: string)
| 366 | * Finds a tool by name or alias from a list of tools. |
| 367 | */ |
| 368 | export function findToolByName(tools: Tools, name: string): Tool | undefined { |
| 369 | return tools.find(t => toolMatchesName(t, name)) |
| 370 | } |
| 371 | |
| 372 | export type Tool< |
| 373 | Input extends AnyObject = AnyObject, |
no test coverage detected