Files
typeshed/stubs/docopt/docopt.pyi
2022-04-15 18:01:00 -07:00

11 lines
322 B
Python

from typing import Any, Iterable
from typing_extensions import TypeAlias
__version__: str
_Argv: TypeAlias = 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]