8 lines
193 B
Python
8 lines
193 B
Python
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
"""Provide classes related to data models shared between Python and QML."""
|
|
|
|
from typing import Tuple, Union
|
|
|
|
SyncId = Union[str, Tuple[str, ...]]
|