(text: string)
| 151 | } |
| 152 | |
| 153 | function emitErrorHandler(text: string): ToolDefinition['handler'] { |
| 154 | return vi.fn(async (_params, ctx) => { |
| 155 | ctx.emit(statusFragment('error', text)); |
| 156 | }); |
| 157 | } |
| 158 | |
| 159 | function emitNextStepsHandler( |
| 160 | text: string, |
nothing calls this directly
no test coverage detected