amulet.api.data_types.wrapper_types module

These data types relate to the translation system.

amulet.api.data_types.wrapper_types.PlatformType = <class 'str'>[source]

The data type for the platform identifier.

amulet.api.data_types.wrapper_types.VersionNumberInt = <class 'int'>[source]

The data type for an integer version number.

amulet.api.data_types.wrapper_types.VersionNumberTuple[source]

The data type for the tuple version number.

alias of Tuple[int, …]

amulet.api.data_types.wrapper_types.VersionNumberAny[source]

The data type for either an integer or tuple version number.

alias of Union[int, Tuple[int, …]]

amulet.api.data_types.wrapper_types.VersionIdentifierType[source]

The data type for a version identifier containing platform and int or tuple version number

alias of Tuple[str, Union[int, Tuple[int, …]]]