10 lines
216 B
Python
Raw Normal View History

2023-10-12 23:26:14 -07:00
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]: ...