add: types to RawTiledObject

This commit is contained in:
Benjamin Kirkbride
2020-05-31 01:24:55 -04:00
parent c41599f4d6
commit db51136ca9

View File

@@ -171,6 +171,8 @@ class RawTiledObject(TypedDict):
ellipse: bool
point: bool
polygon: List[Dict[str, float]]
polyline: List[Dict[str, float]]
text: Dict[str, Union[float, str]]
RawTiledObjects = List[RawTiledObject]