(options: InvokeOptions | undefined)
| 3262 | const defaultElicitationHandler = resolveElicitationHandler(config.onElicitation); |
| 3263 | |
| 3264 | const pickHandler = (options: InvokeOptions | undefined): ElicitationHandler => |
| 3265 | options?.onElicitation |
| 3266 | ? resolveElicitationHandler(options.onElicitation) |
| 3267 | : defaultElicitationHandler; |
| 3268 | |
| 3269 | const buildElicit = ( |
| 3270 | address: ToolAddress, |
no test coverage detected