| 31 | * with an optional next-step tool reference. |
| 32 | */ |
| 33 | export interface MockToolHandlerResult { |
| 34 | events: AnyFragment[]; |
| 35 | attachments: ImageAttachment[]; |
| 36 | nextStepParams?: NextStepParamsMap; |
| 37 | text(): string; |
| 38 | isError(): boolean; |
| 39 | } |
| 40 | |
| 41 | export function createMockToolHandlerContext(): { |
| 42 | ctx: ToolHandlerContext; |
no outgoing calls
no test coverage detected