mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
10 lines
271 B
Python
10 lines
271 B
Python
from typing import Any, Iterable
|
|
|
|
__version__: str
|
|
|
|
_Argv = 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]
|