mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-08-07 16:29:54 +00:00
9 lines
184 B
Python
9 lines
184 B
Python
![]() |
from typing import Optional
|
||
|
|
||
|
class BaseStyle:
|
||
|
@property
|
||
|
def name(self) -> Optional[str]: ...
|
||
|
|
||
|
class _CharacterStyle(BaseStyle): ...
|
||
|
class _ParagraphStyle(_CharacterStyle): ...
|