CICD/app/widget/interface.py
2019-05-18 13:00:13 -04:00

8 lines
137 B
Python

from mypy_extensions import TypedDict
class WidgetInterface(TypedDict, total=False):
widget_id: int
name: str
purpose: str