* Call the function with stack switching enabled. The last argument must be * an object with the keyword arguments. Functions called this way can use * :py:meth:`~pyodide.ffi.run_sync` to block until an * :py:class:`~collections.abc.Awaitable` is resolved. Only works in runtimes * with J
(...jsargs: any)
| 2823 | * @experimental |
| 2824 | */ |
| 2825 | callPromising(...jsargs: any) { |
| 2826 | return callPyObjectKwargsPromising(_getPtr(this), jsargs, {}); |
| 2827 | } |
| 2828 | |
| 2829 | /** |
| 2830 | * Call the function with stack switching enabled. The last argument must be |
nothing calls this directly
no test coverage detected