9 lines
180 B
Python
9 lines
180 B
Python
"""
|
|
Type definitions
|
|
"""
|
|
from typing import Union, Tuple, Sequence, Dict, List
|
|
|
|
|
|
layer_t = Union[int, Tuple[int, int], str]
|
|
annotations_t = Dict[str, List[Union[int, float, str]]]
|