mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-10-03 12:27:04 +00:00
11 lines
252 B
Python
11 lines
252 B
Python
![]() |
from typing import Iterator
|
||
|
|
||
|
from docx.oxml.xmlchemy import BaseOxmlElement
|
||
|
|
||
|
class CT_Body(BaseOxmlElement):
|
||
|
def __iter__(self) -> Iterator[BaseOxmlElement]: ...
|
||
|
|
||
|
class CT_Document(BaseOxmlElement):
|
||
|
@property
|
||
|
def body(self) -> CT_Body: ...
|