(options: InvokeOptions | undefined)
| 5619 | const defaultElicitationHandler = resolveElicitationHandler(config.onElicitation); |
| 5620 | |
| 5621 | const pickHandler = (options: InvokeOptions | undefined): ElicitationHandler => |
| 5622 | options?.onElicitation |
| 5623 | ? resolveElicitationHandler(options.onElicitation) |
| 5624 | : defaultElicitationHandler; |
| 5625 | |
| 5626 | const buildElicit = ( |
| 5627 | address: ToolAddress, |
no test coverage detected