2023-10-13 06:26:14 +00:00

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]: ...