(options: InvokeOptions | undefined)
| 4611 | const defaultElicitationHandler = resolveElicitationHandler(config.onElicitation); |
| 4612 | |
| 4613 | const pickHandler = (options: InvokeOptions | undefined): ElicitationHandler => |
| 4614 | options?.onElicitation |
| 4615 | ? resolveElicitationHandler(options.onElicitation) |
| 4616 | : defaultElicitationHandler; |
| 4617 | |
| 4618 | const buildElicit = ( |
| 4619 | address: ToolAddress, |
no test coverage detected