mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-02 17:43:25 +08:00
Add support for the refresh_token grant type (RefreshTokenGrant) (#11… (#11206)
Add support for the refresh_token grant type (RefreshTokenGrant).
This commit is contained in:
committed by
GitHub
parent
5e66eb5940
commit
3f57017aaf
@@ -7,3 +7,4 @@ from .dispatchers import (
|
||||
)
|
||||
from .hybrid import HybridGrant as HybridGrant
|
||||
from .implicit import ImplicitGrant as ImplicitGrant
|
||||
from .refresh_token import RefreshTokenGrant as RefreshTokenGrant
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
from _typeshed import Incomplete
|
||||
|
||||
from .base import GrantTypeBase
|
||||
|
||||
log: Incomplete
|
||||
|
||||
class RefreshTokenGrant(GrantTypeBase):
|
||||
proxy_target: Incomplete
|
||||
def __init__(self, request_validator: Incomplete | None = None, **kwargs) -> None: ...
|
||||
def add_id_token(self, token, token_handler, request): ...
|
||||
Reference in New Issue
Block a user