mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-10-03 04:14:15 +00:00
9 lines
181 B
Python
9 lines
181 B
Python
from typing import Optional
|
|
|
|
class BaseStyle:
|
|
@property
|
|
def name(self) -> Optional[str]: ...
|
|
|
|
class CharacterStyle(BaseStyle): ...
|
|
class ParagraphStyle(CharacterStyle): ...
|