* Executes the tool with the validated parameters. * @param signal AbortSignal for tool cancellation. * @param updateOutput Optional callback to stream output. * @returns Result of the tool execution.
(
signal: AbortSignal,
updateOutput?: (output: string) => void,
)
| 49 | * @returns Result of the tool execution. |
| 50 | */ |
| 51 | execute( |
| 52 | signal: AbortSignal, |
| 53 | updateOutput?: (output: string) => void, |
| 54 | ): Promise<TResult>; |
no outgoing calls
no test coverage detected