(options: InvokeOptions | undefined)
| 4068 | const defaultElicitationHandler = resolveElicitationHandler(config.onElicitation); |
| 4069 | |
| 4070 | const pickHandler = (options: InvokeOptions | undefined): ElicitationHandler => |
| 4071 | options?.onElicitation |
| 4072 | ? resolveElicitationHandler(options.onElicitation) |
| 4073 | : defaultElicitationHandler; |
| 4074 | |
| 4075 | const buildElicit = ( |
| 4076 | address: ToolAddress, |
no test coverage detected