(options: InvokeOptions | undefined)
| 4155 | const defaultElicitationHandler = resolveElicitationHandler(config.onElicitation); |
| 4156 | |
| 4157 | const pickHandler = (options: InvokeOptions | undefined): ElicitationHandler => |
| 4158 | options?.onElicitation |
| 4159 | ? resolveElicitationHandler(options.onElicitation) |
| 4160 | : defaultElicitationHandler; |
| 4161 | |
| 4162 | const buildElicit = ( |
| 4163 | address: ToolAddress, |
no test coverage detected