massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / humanfriendly / humanfriendly / terminal / spinners.pyi
1 from typing import Any
2
3 GLYPHS: Any
4 MINIMUM_INTERVAL: float
5
6 class Spinner:
7     interactive: Any
8     interval: Any
9     label: Any
10     states: Any
11     stream: Any
12     timer: Any
13     total: Any
14     counter: int
15     last_update: int
16     def __init__(self, **options) -> None: ...
17     def step(self, progress: int = ..., label: Any | None = ...) -> None: ...
18     def sleep(self) -> None: ...
19     def clear(self) -> None: ...
20     def __enter__(self): ...
21     def __exit__(self, exc_type: Any | None = ..., exc_value: Any | None = ..., traceback: Any | None = ...) -> None: ...
22
23 class AutomaticSpinner:
24     label: Any
25     show_time: Any
26     shutdown_event: Any
27     subprocess: Any
28     def __init__(self, label, show_time: bool = ...) -> None: ...
29     def __enter__(self) -> None: ...
30     def __exit__(self, exc_type: Any | None = ..., exc_value: Any | None = ..., traceback: Any | None = ...) -> None: ...