massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Flask / flask / views.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Flask/flask/views.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Flask/flask/views.pyi
new file mode 100644 (file)
index 0000000..e611263
--- /dev/null
@@ -0,0 +1,17 @@
+from typing import Any
+
+http_method_funcs: Any
+
+class View:
+    methods: Any = ...
+    provide_automatic_options: Any = ...
+    decorators: Any = ...
+    def dispatch_request(self, *args: Any, **kwargs: Any) -> Any: ...
+    @classmethod
+    def as_view(cls, name: Any, *class_args: Any, **class_kwargs: Any): ...
+
+class MethodViewType(type):
+    def __init__(self, name: Any, bases: Any, d: Any) -> None: ...
+
+class MethodView(View, metaclass=MethodViewType):
+    def dispatch_request(self, *args: Any, **kwargs: Any) -> Any: ...