Files
AioHTTPX/stubs/aiohttpx/responses/__init__.pyi
2025-10-26 14:19:34 +03:00

7 lines
146 B
Python

from typing import Any
from httpx import Response as HTTPXResponse
class Response(HTTPXResponse):
def json(self, **kwargs: Any) -> Any: ...