massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / pytest-lazy-fixture / pytest_lazyfixture.pyi
1 from typing import Any, Iterable, overload
2
3 class LazyFixture:
4     name: str
5     def __init__(self, name: str) -> None: ...
6     def __eq__(self, other: object) -> bool: ...
7
8 @overload
9 def lazy_fixture(names: str) -> LazyFixture: ...
10 @overload
11 def lazy_fixture(names: Iterable[str]) -> list[LazyFixture] | Any: ...
12 def is_lazy_fixture(val: Any) -> bool: ...
13 def pytest_configure() -> None: ...
14 def __getattr__(name: str) -> Any: ...  # incomplete