We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fb7c5f commit 0160ba3Copy full SHA for 0160ba3
1 file changed
src/python.ts
@@ -77,7 +77,8 @@ export type PythonConvertible =
77
| { [key: string]: PythonConvertible }
78
| Map<PythonConvertible, PythonConvertible>
79
| Set<PythonConvertible>
80
- | Callback;
+ | Callback
81
+ | ((...args: any[]) => any); // js function;
82
83
export type PythonJSCallback = (
84
kwargs: any,
0 commit comments