We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff3fb69 commit 8859e85Copy full SHA for 8859e85
1 file changed
eel/__main__.pyi
@@ -0,0 +1,18 @@
1
+from typing import List
2
+import pkg_resources as pkg
3
+import PyInstaller.__main__ as pyi
4
+import os
5
+from argparse import ArgumentParser, Namespace
6
+
7
+parser: ArgumentParser = ...
8
+args: Namespace = ...
9
+unknown_args: List[str] = ...
10
+main_script: str = ...
11
+web_folder: str = ...
12
13
+eel_js_file: str = ...
14
+js_file_arg: str = ...
15
+web_folder_arg: str = ...
16
17
+needed_args: List[str] = ...
18
+full_args: List[str] = ...
0 commit comments