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
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/pytest-lazy-fixture/pytest_lazyfixture.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/pytest-lazy-fixture/pytest_lazyfixture.pyi
new file mode 100644 (file)
index 0000000..b5cc420
--- /dev/null
@@ -0,0 +1,14 @@
+from typing import Any, Iterable, overload
+
+class LazyFixture:
+    name: str
+    def __init__(self, name: str) -> None: ...
+    def __eq__(self, other: object) -> bool: ...
+
+@overload
+def lazy_fixture(names: str) -> LazyFixture: ...
+@overload
+def lazy_fixture(names: Iterable[str]) -> list[LazyFixture] | Any: ...
+def is_lazy_fixture(val: Any) -> bool: ...
+def pytest_configure() -> None: ...
+def __getattr__(name: str) -> Any: ...  # incomplete