massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / oauthlib / oauthlib / oauth1 / rfc5849 / endpoints / authorization.pyi
1 from typing import Any
2
3 from .base import BaseEndpoint as BaseEndpoint
4
5 class AuthorizationEndpoint(BaseEndpoint):
6     def create_verifier(self, request, credentials): ...
7     def create_authorization_response(
8         self,
9         uri,
10         http_method: str = ...,
11         body: Any | None = ...,
12         headers: Any | None = ...,
13         realms: Any | None = ...,
14         credentials: Any | None = ...,
15     ): ...
16     def get_realms_and_credentials(self, uri, http_method: str = ..., body: Any | None = ..., headers: Any | None = ...): ...