(options: InvokeOptions | undefined)
| 3526 | const defaultElicitationHandler = resolveElicitationHandler(config.onElicitation); |
| 3527 | |
| 3528 | const pickHandler = (options: InvokeOptions | undefined): ElicitationHandler => |
| 3529 | options?.onElicitation |
| 3530 | ? resolveElicitationHandler(options.onElicitation) |
| 3531 | : defaultElicitationHandler; |
| 3532 | |
| 3533 | const buildElicit = ( |
| 3534 | address: ToolAddress, |
no test coverage detected