Files
demo-fastapi/app/client.py
2024-02-15 17:46:35 +08:00

6 lines
126 B
Python

from typing import NewType, TypedDict
UserID = NewType("UserID", int)
class User(TypedDict):
userId: UserID
name: str