6 lines
126 B
Python
6 lines
126 B
Python
from typing import NewType, TypedDict
|
|
|
|
UserID = NewType("UserID", int)
|
|
class User(TypedDict):
|
|
userId: UserID
|
|
name: str |