mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-10-04 21:03:31 +00:00
10 lines
216 B
Python
10 lines
216 B
Python
![]() |
from typing import List
|
||
|
|
||
|
from docx.oxml.text.run import CT_R
|
||
|
from docx.oxml.xmlchemy import BaseOxmlElement
|
||
|
|
||
|
class CT_Hyperlink(BaseOxmlElement):
|
||
|
address: str
|
||
|
@property
|
||
|
def r_lst(self) -> List[CT_R]: ...
|