massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Flask / flask / views.pyi
1 from typing import Any
2
3 http_method_funcs: Any
4
5 class View:
6     methods: Any = ...
7     provide_automatic_options: Any = ...
8     decorators: Any = ...
9     def dispatch_request(self, *args: Any, **kwargs: Any) -> Any: ...
10     @classmethod
11     def as_view(cls, name: Any, *class_args: Any, **class_kwargs: Any): ...
12
13 class MethodViewType(type):
14     def __init__(self, name: Any, bases: Any, d: Any) -> None: ...
15
16 class MethodView(View, metaclass=MethodViewType):
17     def dispatch_request(self, *args: Any, **kwargs: Any) -> Any: ...