8 lines
137 B
Python
8 lines
137 B
Python
|
from mypy_extensions import TypedDict
|
||
|
|
||
|
|
||
|
class WidgetInterface(TypedDict, total=False):
|
||
|
widget_id: int
|
||
|
name: str
|
||
|
purpose: str
|