mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
11 lines
322 B
Python
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]
|