(options: InvokeOptions | undefined)
| 4181 | const defaultElicitationHandler = resolveElicitationHandler(config.onElicitation); |
| 4182 | |
| 4183 | const pickHandler = (options: InvokeOptions | undefined): ElicitationHandler => |
| 4184 | options?.onElicitation |
| 4185 | ? resolveElicitationHandler(options.onElicitation) |
| 4186 | : defaultElicitationHandler; |
| 4187 | |
| 4188 | const buildElicit = ( |
| 4189 | address: ToolAddress, |
no test coverage detected