(options: InvokeOptions | undefined)
| 4227 | const defaultElicitationHandler = resolveElicitationHandler(config.onElicitation); |
| 4228 | |
| 4229 | const pickHandler = (options: InvokeOptions | undefined): ElicitationHandler => |
| 4230 | options?.onElicitation |
| 4231 | ? resolveElicitationHandler(options.onElicitation) |
| 4232 | : defaultElicitationHandler; |
| 4233 | |
| 4234 | const buildElicit = ( |
| 4235 | address: ToolAddress, |
no test coverage detected