mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-26 18:39:18 +00:00
6 lines
157 B
Python
6 lines
157 B
Python
![]() |
from typing import BinaryIO, Optional, Union
|
||
|
|
||
|
import docx.document
|
||
|
|
||
|
def Document(docx: Optional[Union[str, BinaryIO]] = None) -> docx.document.Document: ...
|