Added typing for AsyncServer.instrument()

This commit is contained in:
Christoph Stahl 2025-01-01 13:05:13 +01:00
parent 935add9144
commit 55a3685c76

View file

@ -33,6 +33,7 @@ class AsyncServer:
async def leave_room(self, sid: str, room: str) -> None: ... async def leave_room(self, sid: str, room: str) -> None: ...
def attach(self, app: Any) -> None: ... def attach(self, app: Any) -> None: ...
async def disconnect(self, sid: str) -> None: ... async def disconnect(self, sid: str) -> None: ...
def instrument(self, auth: dict[str, str]) -> None: ...
class AsyncClient: class AsyncClient:
def __init__(self, json: Any = None): ... def __init__(self, json: Any = None): ...