(options: InvokeOptions | undefined)
| 3609 | const defaultElicitationHandler = resolveElicitationHandler(config.onElicitation); |
| 3610 | |
| 3611 | const pickHandler = (options: InvokeOptions | undefined): ElicitationHandler => |
| 3612 | options?.onElicitation |
| 3613 | ? resolveElicitationHandler(options.onElicitation) |
| 3614 | : defaultElicitationHandler; |
| 3615 | |
| 3616 | const buildElicit = ( |
| 3617 | address: ToolAddress, |
no test coverage detected