| 54 | } |
| 55 | |
| 56 | export interface ExtendedTool extends Tool { |
| 57 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 58 | function: (...args: any[]) => unknown | Promise<unknown>; |
| 59 | } |
| 60 | |
| 61 | export type ToolCollection = { |
| 62 | [key: string]: ExtendedTool; |
nothing calls this directly
no outgoing calls
no test coverage detected