8 lines
139 B
Python
8 lines
139 B
Python
|
from mypy_extensions import TypedDict
|
||
|
|
||
|
|
||
|
class FizzbarInterface(TypedDict, total=False):
|
||
|
fizzbar_id: int
|
||
|
name: str
|
||
|
purpose: str
|