| 16 | import { ToolErrorType } from './tool-error.js'; |
| 17 | |
| 18 | class TestToolInvocation implements ToolInvocation<object, ToolResult> { |
| 19 | constructor( |
| 20 | readonly params: object, |
| 21 | private readonly executeFn: () => Promise<ToolResult>, |
nothing calls this directly
no outgoing calls
no test coverage detected