flow / typings /fastapi /testclient.pyi
zbq111's picture
Upload 75 files
504b397 verified
raw
history blame contribute delete
280 Bytes
from typing import Any
class Response:
status_code: int
def json(self) -> Any: ...
class TestClient:
def __init__(self, app: Any) -> None: ...
def get(self, url: str, **kwargs: Any) -> Response: ...
def post(self, url: str, **kwargs: Any) -> Response: ...