4 lines
62 B
Python
4 lines
62 B
Python
from typing import NewType
|
|
|
|
Minutes = NewType("Minutes", int)
|
from typing import NewType
|
|
|
|
Minutes = NewType("Minutes", int)
|