massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / setuptools / setuptools / command / alias.pyi
1 from typing import Any
2
3 from setuptools.command.setopt import option_base
4
5 def shquote(arg): ...
6
7 class alias(option_base):
8     description: str
9     command_consumes_arguments: bool
10     user_options: Any
11     boolean_options: Any
12     args: Any
13     remove: Any
14     def initialize_options(self) -> None: ...
15     def finalize_options(self) -> None: ...
16     def run(self) -> None: ...
17
18 def format_alias(name, aliases): ...