7 lines
199 B
Python
7 lines
199 B
Python
|
from typing import Tuple, Type, Union
|
||
|
|
||
|
from .model_item import ModelItem
|
||
|
|
||
|
# Type[ModelItem] or Tuple[Type[ModelItem], str...]
|
||
|
SyncId = Union[Type[ModelItem], Tuple[Union[Type[ModelItem], str], ...]]
|