massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / humanfriendly / humanfriendly / deprecation.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/humanfriendly/humanfriendly/deprecation.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/humanfriendly/humanfriendly/deprecation.pyi
new file mode 100644 (file)
index 0000000..f384fa8
--- /dev/null
@@ -0,0 +1,14 @@
+import types
+from typing import Any
+
+def define_aliases(module_name, **aliases) -> None: ...
+def get_aliases(module_name): ...
+def deprecated_args(*names): ...
+def is_method(function): ...
+
+class DeprecationProxy(types.ModuleType):
+    module: Any
+    aliases: Any
+    def __init__(self, module, aliases) -> None: ...
+    def __getattr__(self, name): ...
+    def resolve(self, target): ...