mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-11-02 11:03:38 +00:00
13 lines
330 B
Python
13 lines
330 B
Python
|
|
from typing import Sequence
|
||
|
|
|
||
|
|
from docx.oxml.xmlchemy import BaseOxmlElement
|
||
|
|
from docx.table import Table
|
||
|
|
from docx.text.paragraph import Paragraph
|
||
|
|
|
||
|
|
class BlockItemContainer:
|
||
|
|
_element: BaseOxmlElement
|
||
|
|
@property
|
||
|
|
def paragraphs(self) -> Sequence[Paragraph]: ...
|
||
|
|
@property
|
||
|
|
def tables(self) -> Sequence[Table]: ...
|