mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
10 lines
284 B
Python
10 lines
284 B
Python
from typing import Any, Iterable, Union
|
|
|
|
__version__: str
|
|
|
|
_Argv = Union[Iterable[str], str]
|
|
|
|
def docopt(
|
|
doc: str, argv: _Argv | None = ..., help: bool = ..., version: Any | None = ..., options_first: bool = ...
|
|
) -> dict[str, Any]: ... # Really should be dict[str, str | bool]
|