mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-10-04 04:43:05 +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]: ...
|