bowl/cheuph/element.py
2019-06-08 09:10:59 +00:00

17 lines
304 B
Python

from dataclasses import dataclass
from typing import Hashable, Optional
__all__ = ["Id", "Element", "RenderedElement"]
Id = Hashable
@dataclass
class Element:
id: Id
parent_id: Optional[Id]
@dataclass
class RenderedElement:
id: Id
meta: AttributedText
lines: List[AttributedText]