(options: InvokeOptions | undefined)
| 3510 | const defaultElicitationHandler = resolveElicitationHandler(config.onElicitation); |
| 3511 | |
| 3512 | const pickHandler = (options: InvokeOptions | undefined): ElicitationHandler => |
| 3513 | options?.onElicitation |
| 3514 | ? resolveElicitationHandler(options.onElicitation) |
| 3515 | : defaultElicitationHandler; |
| 3516 | |
| 3517 | const buildElicit = ( |
| 3518 | address: ToolAddress, |
no test coverage detected