2023-10-13 06:26:14 +00:00

9 lines
181 B
Python

from typing import Optional
class BaseStyle:
@property
def name(self) -> Optional[str]: ...
class CharacterStyle(BaseStyle): ...
class ParagraphStyle(CharacterStyle): ...