mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-10-06 13:53:39 +00:00
31 lines
606 B
Python
31 lines
606 B
Python
from docx.oxml.xmlchemy import BaseOxmlElement
|
|
|
|
class CT_Br(BaseOxmlElement):
|
|
type: str | None
|
|
clear: str | None
|
|
@property
|
|
def text(self) -> str: ...
|
|
|
|
class CT_Cr(BaseOxmlElement):
|
|
@property
|
|
def text(self) -> str: ...
|
|
|
|
class CT_NoBreakHyphen(BaseOxmlElement):
|
|
@property
|
|
def text(self) -> str: ...
|
|
|
|
class CT_PTab(BaseOxmlElement):
|
|
@property
|
|
def text(self) -> str: ...
|
|
|
|
class CT_R(BaseOxmlElement):
|
|
text: str
|
|
|
|
class CT_Tab(BaseOxmlElement):
|
|
@property
|
|
def text(self) -> str: ...
|
|
|
|
class CT_Text(BaseOxmlElement):
|
|
@property
|
|
def text(self) -> str: ...
|