(
self, callback: t.Callable[..., V], /, *args: t.Any, **kwargs: t.Any
)
| 844 | |
| 845 | @t.overload |
| 846 | def invoke( |
| 847 | self, callback: t.Callable[..., V], /, *args: t.Any, **kwargs: t.Any |
| 848 | ) -> V: ... |
| 849 | |
| 850 | @t.overload |
| 851 | def invoke(self, callback: Command, /, *args: t.Any, **kwargs: t.Any) -> t.Any: ... |
no test coverage detected